tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python313Packages.mxnet: refactor
Fabian Affolter
8 months ago
e14190dc
d06e8fa5
+6
-9
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
mxnet
default.nix
+6
-9
pkgs/development/python-modules/mxnet/default.nix
reviewed
···
1
1
{
2
2
lib,
3
3
buildPythonPackage,
4
4
-
pkgs,
5
5
-
setuptools,
6
4
distutils,
7
7
-
requests,
8
8
-
numpy,
9
5
graphviz,
6
6
+
numpy,
7
7
+
pkgs,
10
8
python,
11
11
-
isPy3k,
9
9
+
requests,
10
10
+
setuptools,
12
11
}:
13
12
14
13
buildPythonPackage {
···
20
21
21
22
dependencies = [
22
23
distutils
23
23
-
requests
24
24
-
numpy
25
24
graphviz
25
25
+
numpy
26
26
+
requests
26
27
];
27
28
28
29
pythonRelaxDeps = [
···
31
32
];
32
33
33
34
LD_LIBRARY_PATH = lib.makeLibraryPath [ pkgs.mxnet ];
34
34
-
35
35
-
doCheck = !isPy3k;
36
35
37
36
postPatch = ''
38
37
# Required to support numpy >=1.24 where np.bool is removed in favor of just bool