python3Packages.numpy: 1.21.6 -> 1.23.1
This commit is contained in:
parent
dab5a2ca78
commit
a93740e9ba
1 changed files with 5 additions and 3 deletions
|
@ -6,6 +6,7 @@
|
||||||
, gfortran
|
, gfortran
|
||||||
, hypothesis
|
, hypothesis
|
||||||
, pytest
|
, pytest
|
||||||
|
, typing-extensions
|
||||||
, blas
|
, blas
|
||||||
, lapack
|
, lapack
|
||||||
, writeTextFile
|
, writeTextFile
|
||||||
|
@ -44,15 +45,15 @@ in buildPythonPackage rec {
|
||||||
# Attention! v1.22.0 breaks scipy and by extension scikit-learn, so
|
# Attention! v1.22.0 breaks scipy and by extension scikit-learn, so
|
||||||
# build both to verify they don't break.
|
# build both to verify they don't break.
|
||||||
# https://github.com/scipy/scipy/issues/15414
|
# https://github.com/scipy/scipy/issues/15414
|
||||||
version = "1.21.6";
|
version = "1.23.1";
|
||||||
|
|
||||||
format = "pyproject.toml";
|
format = "pyproject.toml";
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
extension = "zip";
|
extension = "tar.gz";
|
||||||
sha256 = "sha256-7LVSUROXBmaf3sL/BzyY746ahEc+UecWIRtBqg8Y5lY=";
|
hash = "sha256-10jvNJv+8uEZS1naN+1aKcGeqNfmNCAZkhuiuk/YtiQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = lib.optionals python.hasDistutilsCxxPatch [
|
patches = lib.optionals python.hasDistutilsCxxPatch [
|
||||||
|
@ -83,6 +84,7 @@ in buildPythonPackage rec {
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
pytest
|
pytest
|
||||||
hypothesis
|
hypothesis
|
||||||
|
typing-extensions
|
||||||
];
|
];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
|
|
Loading…
Reference in a new issue