Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 656 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, decorator 5, nbformat 6, pytz 7, requests 8, retrying 9, six 10}: 11 12buildPythonPackage rec { 13 pname = "plotly"; 14 version = "4.9.0"; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "257f530ffd73754bd008454826905657b329053364597479bb9774437a396837"; 19 }; 20 21 propagatedBuildInputs = [ 22 decorator 23 nbformat 24 pytz 25 requests 26 retrying 27 six 28 ]; 29 30 # No tests in archive 31 doCheck = false; 32 33 meta = { 34 description = "Python plotting library for collaborative, interactive, publication-quality graphs"; 35 homepage = "https://plot.ly/python/"; 36 license = with lib.licenses; [ mit ]; 37 }; 38}