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

Loading…
Cancel
Save