From 5d63abee89ac0afca31bf7e35be438194634ebc9 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Tue, 27 Aug 2024 18:26:03 +0300 Subject: [PATCH] python312Packages.scipy: use modern deps Python attributes --- pkgs/development/python-modules/scipy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/scipy/default.nix b/pkgs/development/python-modules/scipy/default.nix index aad048e88f52..028771ca5dbf 100644 --- a/pkgs/development/python-modules/scipy/default.nix +++ b/pkgs/development/python-modules/scipy/default.nix @@ -95,7 +95,7 @@ buildPythonPackage { --replace-fail "pybind11>=2.12.0,<2.13.0" "pybind11>=2.12.0" \ ''; - nativeBuildInputs = [ + build-system = [ cython gfortran meson-python @@ -120,7 +120,7 @@ buildPythonPackage { xsimd ]; - propagatedBuildInputs = [ numpy ]; + dependencies = [ numpy ]; __darwinAllowLocalNetworking = true;