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