pythonPackages.hvplot: init at 0.4.0

wip/yesman
Chris Ostrouchov 5 years ago
parent 3c3bf6450c
commit f6719efd83
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573
  1. 46
      pkgs/development/python-modules/hvplot/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,46 @@
{ lib
, buildPythonPackage
, fetchPypi
, bokeh
, holoviews
, pandas
, pytest
, parameterized
, nbsmoke
, flake8
, coveralls
, xarray
, networkx
, streamz
}:
buildPythonPackage rec {
pname = "hvplot";
version = "0.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "bce169cf2d1b3ff9ce607d1787f608758e72a498434eaa2bece31eea1f51963a";
};
checkInputs = [ pytest parameterized nbsmoke flake8 coveralls xarray networkx streamz ];
propagatedBuildInputs = [
bokeh
holoviews
pandas
];
preCheck = ''
export HOME=$(mktemp -d)
'';
# many tests require a network connection
doCheck = false;
meta = with lib; {
description = "A high-level plotting API for the PyData ecosystem built on HoloViews";
homepage = https://hvplot.pyviz.org;
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}

@ -4164,6 +4164,8 @@ in {
hieroglyph = callPackage ../development/python-modules/hieroglyph { };
hvplot = callPackage ../development/python-modules/hvplot { };
guzzle_sphinx_theme = callPackage ../development/python-modules/guzzle_sphinx_theme { };
sphinx-testing = callPackage ../development/python-modules/sphinx-testing { };

Loading…
Cancel
Save