tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.jax: 0.3.16 -> 0.3.23
Samuel Ainsworth
3 years ago
38cd4258
bbaad9c2
+4
-5
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
jax
default.nix
+4
-5
pkgs/development/python-modules/jax/default.nix
···
21
21
in
22
22
buildPythonPackage rec {
23
23
pname = "jax";
24
24
-
version = "0.3.16";
24
24
+
version = "0.3.23";
25
25
format = "setuptools";
26
26
27
27
disabled = pythonOlder "3.7";
···
30
30
owner = "google";
31
31
repo = pname;
32
32
rev = "jax-v${version}";
33
33
-
hash = "sha256-4idh7boqBXSO9vEHxEcrzXjBIrKmmXiCf6cXh7En1/I=";
33
33
+
hash = "sha256-ruXOwpBwpi1G8jgH9nhbWbs14JupwWkjh+Wzrj8HVU4=";
34
34
};
35
35
36
36
# jaxlib is _not_ included in propagatedBuildInputs because there are
···
92
92
"tests/sparse_test.py"
93
93
];
94
94
95
95
-
pythonImportsCheck = [
96
96
-
"jax"
97
97
-
];
95
95
+
# As of 0.3.22, `import jax` does not work without jaxlib being installed.
96
96
+
pythonImportsCheck = [ ];
98
97
99
98
meta = with lib; {
100
99
description = "Differentiate, compile, and transform Numpy code";