summary refs log tree commit diff
path: root/pkgs/development/python-modules/Cython
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-05 18:03:42 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-21 15:49:54 -0400
commitf8a18cd4cf2e3d249fede58e0b7cc0aea06e3bc1 (patch)
treee853e7da55b09acd1d622991491c1a696f9857ef /pkgs/development/python-modules/Cython
parent531e4b80c97002a542beb8fe356177ebd66cdd8e (diff)
downloadnixlib-f8a18cd4cf2e3d249fede58e0b7cc0aea06e3bc1.tar
nixlib-f8a18cd4cf2e3d249fede58e0b7cc0aea06e3bc1.tar.gz
nixlib-f8a18cd4cf2e3d249fede58e0b7cc0aea06e3bc1.tar.bz2
nixlib-f8a18cd4cf2e3d249fede58e0b7cc0aea06e3bc1.tar.lz
nixlib-f8a18cd4cf2e3d249fede58e0b7cc0aea06e3bc1.tar.xz
nixlib-f8a18cd4cf2e3d249fede58e0b7cc0aea06e3bc1.tar.zst
nixlib-f8a18cd4cf2e3d249fede58e0b7cc0aea06e3bc1.zip
misc pkgs: Manual fixup pkgconfig nativeBuildInputs after sed
Importantly, this included regenerating pkgs/servers/x11/xorg, to
clobber the old sed.
Diffstat (limited to 'pkgs/development/python-modules/Cython')
-rw-r--r--pkgs/development/python-modules/Cython/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/Cython/default.nix b/pkgs/development/python-modules/Cython/default.nix
index f94db1bdbe97..0513f67e5697 100644
--- a/pkgs/development/python-modules/Cython/default.nix
+++ b/pkgs/development/python-modules/Cython/default.nix
@@ -30,11 +30,12 @@ buildPythonPackage rec {
       tests/run/cpdef_enums.pyx
   '';
 
-  nativeBuildInputs = [ pkgconfig ];
+  nativeBuildInputs = [
+    pkgconfig
+    # For testing
+    numpy ncurses
+  ];
   buildInputs = [ glibcLocales gdb ];
-  # For testing
-  nativeBuildInputs = [ numpy ncurses ];
-
   LC_ALL = "en_US.UTF-8";
 
   # cython's testsuite is not working very well with libc++
@@ -55,4 +56,4 @@ buildPythonPackage rec {
     license = lib.licenses.asl20;
     maintainers = with lib.maintainers; [ fridh ];
   };
-}
\ No newline at end of file
+}