tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.bqscales: 0.3.1 -> 0.3.3
Martin Weinelt
2 years ago
3c858588
d10b952b
+6
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
bqscales
default.nix
+6
-2
pkgs/development/python-modules/bqscales/default.nix
reviewed
···
3
3
, pythonOlder
4
4
, fetchPypi
5
5
, hatchling
6
6
+
, hatch-jupyter-builder
7
7
+
, jupyterlab
6
8
, jupyter-packaging
7
9
, ipywidgets
8
10
, numpy
···
12
14
13
15
buildPythonPackage rec {
14
16
pname = "bqscales";
15
15
-
version = "0.3.1";
17
17
+
version = "0.3.3";
16
18
format = "pyproject";
17
19
disabled = pythonOlder "3.6";
18
20
19
21
src = fetchPypi {
20
22
inherit pname version;
21
21
-
hash = "sha256-C+/GLpqYpePngbn5W0MwvpdmVgFZF7aGHyKMgO5XM90=";
23
23
+
hash = "sha256-SlnNw4dWOzRedwIN3kCyl95qVqkY92QGOMS3Eyoqk0I=";
22
24
};
23
25
24
26
# We relax dependencies here instead of pulling in a patch because upstream
···
35
37
'';
36
38
37
39
nativeBuildInputs = [
40
40
+
hatch-jupyter-builder
38
41
hatchling
42
42
+
jupyterlab
39
43
jupyter-packaging
40
44
];
41
45