1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-01 21:39:21 +03:00
nixpkgs/pkgs/development/python-modules/hvplot/default.nix

45 lines
857 B
Nix
Raw Normal View History

2019-02-24 10:26:44 -05:00
{ lib
, bokeh
2019-02-24 10:26:44 -05:00
, buildPythonPackage
, colorcet
2019-02-24 10:26:44 -05:00
, fetchPypi
, holoviews
, pandas
, pythonOlder
2019-02-24 10:26:44 -05:00
}:
buildPythonPackage rec {
pname = "hvplot";
version = "0.8.2";
format = "setuptools";
disabled = pythonOlder "3.6";
2019-02-24 10:26:44 -05:00
src = fetchPypi {
inherit pname version;
hash = "sha256-/q2zlawBoL5fyJFVRSRGwrnEEqmdY+rAKQgxOBY9XBs=";
2019-02-24 10:26:44 -05:00
};
propagatedBuildInputs = [
bokeh
colorcet
2019-02-24 10:26:44 -05:00
holoviews
pandas
];
# Many tests require a network connection
2019-02-24 10:26:44 -05:00
doCheck = false;
2020-06-02 15:05:41 +02:00
pythonImportsCheck = [
"hvplot.pandas"
];
2019-02-24 10:26:44 -05:00
meta = with lib; {
description = "A high-level plotting API for the PyData ecosystem built on HoloViews";
homepage = "https://hvplot.pyviz.org";
changelog = "https://github.com/holoviz/hvplot/releases/tag/v${version}";
2019-02-24 10:26:44 -05:00
license = licenses.bsd3;
maintainers = with maintainers; [ costrouc ];
2019-02-24 10:26:44 -05:00
};
}