Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-plotly/versions
		
			
				
	
	
		
			39 lines
		
	
	
		
			642 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			642 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib
 | 
						|
, buildPythonPackage
 | 
						|
, fetchPypi
 | 
						|
, decorator
 | 
						|
, nbformat
 | 
						|
, pytz
 | 
						|
, requests
 | 
						|
, retrying
 | 
						|
, six
 | 
						|
}:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "plotly";
 | 
						|
  version = "3.3.0";
 | 
						|
 | 
						|
  src = fetchPypi {
 | 
						|
    inherit pname version;
 | 
						|
    sha256 = "1bsjk4crf9p08lmgmiibmk8w8kmlrfadyly5l12zz1d330acijl1";
 | 
						|
  };
 | 
						|
 | 
						|
  propagatedBuildInputs = [
 | 
						|
    decorator
 | 
						|
    nbformat
 | 
						|
    pytz
 | 
						|
    requests
 | 
						|
    retrying
 | 
						|
    six
 | 
						|
  ];
 | 
						|
 | 
						|
  # No tests in archive
 | 
						|
  doCheck = false;
 | 
						|
 | 
						|
  meta = {
 | 
						|
    description = "Python plotting library for collaborative, interactive, publication-quality graphs";
 | 
						|
    homepage = https://plot.ly/python/;
 | 
						|
    license = with lib.licenses; [ mit ];
 | 
						|
  };
 | 
						|
}
 |