summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/oldest-supported-numpy/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/oldest-supported-numpy/default.nix')
-rw-r--r--pkgs/development/python-modules/oldest-supported-numpy/default.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/oldest-supported-numpy/default.nix b/pkgs/development/python-modules/oldest-supported-numpy/default.nix
index a0ec902984e1..521094a8e4c0 100644
--- a/pkgs/development/python-modules/oldest-supported-numpy/default.nix
+++ b/pkgs/development/python-modules/oldest-supported-numpy/default.nix
@@ -1,7 +1,8 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, numpy
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ numpy,
}:
buildPythonPackage rec {
@@ -25,9 +26,7 @@ buildPythonPackage rec {
--replace 'numpy==' 'numpy>='
'';
- propagatedBuildInputs = [
- numpy
- ];
+ propagatedBuildInputs = [ numpy ];
# package has no tests
doCheck = false;