nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python313Packages.mxnet: refactor

+6 -9
+6 -9
pkgs/development/python-modules/mxnet/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 - pkgs, 5 - setuptools, 6 4 distutils, 7 - requests, 8 - numpy, 9 5 graphviz, 6 + numpy, 7 + pkgs, 10 8 python, 11 - isPy3k, 9 + requests, 10 + setuptools, 12 11 }: 13 12 14 13 buildPythonPackage { ··· 20 21 21 22 dependencies = [ 22 23 distutils 23 - requests 24 - numpy 25 24 graphviz 25 + numpy 26 + requests 26 27 ]; 27 28 28 29 pythonRelaxDeps = [ ··· 31 32 ]; 32 33 33 34 LD_LIBRARY_PATH = lib.makeLibraryPath [ pkgs.mxnet ]; 34 - 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