Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 49 lines 812 B view raw
1{ buildPythonPackage 2, fetchPypi 3, lib 4, param 5, numpy 6, pyviz-comms 7, ipython 8, notebook 9, pandas 10, matplotlib 11, bokeh 12, scipy 13, panel 14, colorcet 15}: 16 17buildPythonPackage rec { 18 pname = "holoviews"; 19 version = "1.14.2"; 20 21 src = fetchPypi { 22 inherit pname version; 23 sha256 = "64f85cf2c99b083b96f26cd26452aec4b41ced6d9e57f56ae8d72b88defc61c9"; 24 }; 25 26 propagatedBuildInputs = [ 27 colorcet 28 param 29 numpy 30 pyviz-comms 31 ipython 32 notebook 33 pandas 34 matplotlib 35 bokeh 36 scipy 37 panel 38 ]; 39 40 # tests not fully included with pypi release 41 doCheck = false; 42 43 meta = with lib; { 44 description = "Python data analysis and visualization seamless and simple"; 45 homepage = "http://www.holoviews.org/"; 46 license = licenses.bsd3; 47 maintainers = [ maintainers.costrouc ]; 48 }; 49}