Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions pkgs/development/python-modules/numpy/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
, cython
, setuptoolsBuildHook
, pythonOlder
, typing-extensions
}:

assert (!blas.isILP64) && (!lapack.isILP64);
Expand Down Expand Up @@ -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";
format = "pyproject";
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 [
Expand Down Expand Up @@ -83,6 +84,7 @@ in buildPythonPackage rec {
checkInputs = [
pytest
hypothesis
typing-extensions
];

checkPhase = ''
Expand Down