summary refs log tree commit diff
path: root/pkgs/development/python-modules/cypari2
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-02-15 09:42:51 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2019-02-17 14:40:53 +0100
commit424dd6c1c566fee4512d67fc2b4a54fa6d7f2b35 (patch)
treec8bff9bfb2af2800c1598dfc3cb9bbbb5ea0c45c /pkgs/development/python-modules/cypari2
parent51e9723ba98b5c36b9c3397cebfc972c1a1328bc (diff)
downloadnixpkgs-424dd6c1c566fee4512d67fc2b4a54fa6d7f2b35.tar
nixpkgs-424dd6c1c566fee4512d67fc2b4a54fa6d7f2b35.tar.gz
nixpkgs-424dd6c1c566fee4512d67fc2b4a54fa6d7f2b35.tar.bz2
nixpkgs-424dd6c1c566fee4512d67fc2b4a54fa6d7f2b35.tar.lz
nixpkgs-424dd6c1c566fee4512d67fc2b4a54fa6d7f2b35.tar.xz
nixpkgs-424dd6c1c566fee4512d67fc2b4a54fa6d7f2b35.tar.zst
nixpkgs-424dd6c1c566fee4512d67fc2b4a54fa6d7f2b35.zip
python.pkgs.cypari2: fix build
after setting `strictDeps = true;`
Diffstat (limited to 'pkgs/development/python-modules/cypari2')
-rw-r--r--pkgs/development/python-modules/cypari2/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/cypari2/default.nix b/pkgs/development/python-modules/cypari2/default.nix
index bf46bf9a182..1e1248591f0 100644
--- a/pkgs/development/python-modules/cypari2/default.nix
+++ b/pkgs/development/python-modules/cypari2/default.nix
@@ -29,8 +29,11 @@ buildPythonPackage rec {
     ${python.pythonForBuild.pkgs.bootstrapped-pip}/bin/pip install --no-index --prefix=$out --no-cache --build=tmpdir .
   '';
 
-  buildInputs = [
+  nativeBuildInputs = [
     pari
+  ];
+
+  buildInputs = [
     gmp
   ];