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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
jupyter-packaging,
jupyterlab,
bqscales,
ipywidgets,
numpy,
pandas,
traitlets,
traittypes,
}:
buildPythonPackage rec {
pname = "bqplot";
version = "0.12.43";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-8rRp0fA99PUYc8sEBqJLVs30qDX8WqlWB3b8Y2uLNEk=";
};
# upstream seems in flux for 0.13 release. they seem to want to migrate from
# jupyter_packaging to hatch, so let's patch instead of fixing upstream
postPatch = ''
substituteInPlace pyproject.toml \
--replace "jupyter_packaging~=" "jupyter_packaging>=" \
--replace "jupyterlab~=" "jupyterlab>="
'';
nativeBuildInputs = [
jupyter-packaging
jupyterlab
];
propagatedBuildInputs = [
bqscales
ipywidgets
numpy
pandas
traitlets
traittypes
];
# no tests in PyPI dist, and not obvious to me how to build the js files from GitHub
doCheck = false;
pythonImportsCheck = [
"bqplot"
"bqplot.pyplot"
];
meta = {
description = "2D plotting library for Jupyter based on Grammar of Graphics";
homepage = "https://bqplot.github.io/bqplot";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}
|