From 80b2f9f1bbffe7d19a6ee879b322d8ac974b7aa3 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Sat, 4 Jan 2025 17:50:59 +0200 Subject: [PATCH] python312Packages.scipy: 1.14.1 -> 1.15.0 Diff: https://github.com/scipy/scipy/compare/refs/tags/v1.14.1...v1.15.0 Changelog: https://github.com/scipy/scipy/releases/tag/v1.15.0 --- pkgs/development/python-modules/scipy/default.nix | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/scipy/default.nix b/pkgs/development/python-modules/scipy/default.nix index ad7b85eb7170..9372e5f9934f 100644 --- a/pkgs/development/python-modules/scipy/default.nix +++ b/pkgs/development/python-modules/scipy/default.nix @@ -34,7 +34,7 @@ # tests hypothesis, - pytest7CheckHook, + pytestCheckHook, pytest-xdist, # Reverse dependency @@ -48,8 +48,8 @@ let # nix-shell maintainers/scripts/update.nix --argstr package python3.pkgs.scipy # # The update script uses sed regexes to replace them with the updated hashes. - version = "1.14.1"; - srcHash = "sha256-eYuUHr9wZMXvEsIhssGR35JnRBNGaOL/j1LNM5sHuYY="; + version = "1.15.0"; + srcHash = "sha256-HAL9Ebfrm08UiSzWrgXQpoYLh5Nz57ykLz2EMBaygN0="; datasetsHashes = { ascent = "1qjp35ncrniq9rhzb14icwwykqg2208hcssznn3hz27w39615kh3"; ecg = "1bwbjp43b7znnwha5hv6wiz3g0bhwrpqpi75s12zidxrbwvd62pj"; @@ -92,11 +92,6 @@ buildPythonPackage { }) ]; - postPatch = '' - substituteInPlace pyproject.toml \ - --replace-fail "pybind11>=2.12.0,<2.13.0" "pybind11>=2.12.0" \ - ''; - build-system = [ cython @@ -129,8 +124,7 @@ buildPythonPackage { nativeCheckInputs = [ hypothesis - # Failed: DID NOT WARN. No warnings of type (, , ) were emitted. - pytest7CheckHook + pytestCheckHook pytest-xdist ];