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