Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
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.0.15"; 14 name = "${pname}-${version}"; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "0ecd16a11778674c63615a590e22f79307801eaf009b399bf7e46c486dec8f99"; 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}