blob: 7884f61cbcb6e4eddf6c7d4df7052a59d77c8b25 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{
lib,
bokeh,
buildPythonPackage,
colorcet,
fetchPypi,
holoviews,
pandas,
pythonOlder,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "hvplot";
version = "0.10.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-6HSGqVv+FRq1LvFjpek9nL0EOZLPC3Vcyt0r82/t03Y=";
};
build-system = [ setuptools-scm ];
dependencies = [
bokeh
colorcet
holoviews
pandas
];
# Many tests require a network connection
doCheck = false;
pythonImportsCheck = [ "hvplot.pandas" ];
meta = with lib; {
description = "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}";
license = licenses.bsd3;
maintainers = [ ];
};
}
|