1{ lib 2, buildPythonPackage 3, fetchPypi 4, decorator 5, nbformat 6, pytz 7, requests 8, six 9}: 10 11buildPythonPackage rec { 12 pname = "plotly"; 13 version = "2.4.0"; 14 name = "${pname}-${version}"; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "8e7ee039231fec52b0b38d45e7470f70b117f6527b08cc922d74992f4d082858"; 19 }; 20 21 propagatedBuildInputs = [ 22 decorator 23 nbformat 24 pytz 25 requests 26 six 27 ]; 28 29 # No tests in archive 30 doCheck = false; 31 32 meta = { 33 description = "Python plotting library for collaborative, interactive, publication-quality graphs"; 34 homepage = https://plot.ly/python/; 35 license = with lib.licenses; [ mit ]; 36 }; 37}