Merge pull request #171943 from r-ryantm/auto-update/python3.10-holoviews

python310Packages.holoviews: 1.14.8 -> 1.14.9
main
Artturi 2 years ago committed by GitHub
commit ec022db3c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 32
      pkgs/development/python-modules/holoviews/default.nix

@ -1,26 +1,30 @@
{ buildPythonPackage
{ lib
, bokeh
, buildPythonPackage
, colorcet
, fetchPypi
, lib
, param
, numpy
, pyviz-comms
, ipython
, matplotlib
, notebook
, numpy
, pandas
, matplotlib
, bokeh
, scipy
, panel
, colorcet
, param
, pythonOlder
, pyviz-comms
, scipy
}:
buildPythonPackage rec {
pname = "holoviews";
version = "1.14.8";
version = "1.14.9";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-bDZVmaLLFnk7tifJtcVDCYK7WRyd6IhQAv+RtTm2ETM=";
hash = "sha256-mRI5CqJ58/vb5N81UYsS6Hy+zNeRXnIZEd7lVW22MGo=";
};
propagatedBuildInputs = [
@ -35,12 +39,14 @@ buildPythonPackage rec {
# tests not fully included with pypi release
doCheck = false;
pythonImportsCheck = [ "holoviews" ];
pythonImportsCheck = [
"holoviews"
];
meta = with lib; {
description = "Python data analysis and visualization seamless and simple";
homepage = "http://www.holoviews.org/";
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
maintainers = with maintainers; [ costrouc ];
};
}

Loading…
Cancel
Save