tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.ipywidgets: 8.1.3 -> 8.1.5
natsukium
1 year ago
2cf7c7fd
c90f7947
+6
-10
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
ipywidgets
default.nix
+6
-10
pkgs/development/python-modules/ipywidgets/default.nix
···
2
buildPythonPackage,
3
fetchPypi,
4
setuptools,
5
-
wheel,
6
comm,
7
ipykernel,
8
ipython,
9
jsonschema,
10
jupyterlab-widgets,
11
lib,
12
-
pytest7CheckHook,
13
pytz,
14
traitlets,
15
widgetsnbextension,
···
17
18
buildPythonPackage rec {
19
pname = "ipywidgets";
20
-
version = "8.1.3";
21
pyproject = true;
22
23
src = fetchPypi {
24
inherit pname version;
25
-
hash = "sha256-9fnuquCCsYI86erCV1JylS9A10iJOXKVbcCXAKY5LZw=";
26
};
27
28
-
nativeBuildInputs = [
29
-
setuptools
30
-
wheel
31
-
];
32
33
-
propagatedBuildInputs = [
34
comm
35
ipython
36
jupyterlab-widgets
···
41
nativeCheckInputs = [
42
ipykernel
43
jsonschema
44
-
pytest7CheckHook
45
pytz
46
];
47
···
2
buildPythonPackage,
3
fetchPypi,
4
setuptools,
0
5
comm,
6
ipykernel,
7
ipython,
8
jsonschema,
9
jupyterlab-widgets,
10
lib,
11
+
pytestCheckHook,
12
pytz,
13
traitlets,
14
widgetsnbextension,
···
16
17
buildPythonPackage rec {
18
pname = "ipywidgets";
19
+
version = "8.1.5";
20
pyproject = true;
21
22
src = fetchPypi {
23
inherit pname version;
24
+
hash = "sha256-hw5DsaNWVqgMGMlQO78tFoAtsctIfuxvqyfWgzgd3hc=";
25
};
26
27
+
build-system = [ setuptools ];
0
0
0
28
29
+
dependencies = [
30
comm
31
ipython
32
jupyterlab-widgets
···
37
nativeCheckInputs = [
38
ipykernel
39
jsonschema
40
+
pytestCheckHook
41
pytz
42
];
43