about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-05-29 20:21:04 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2020-05-29 20:21:04 +0200
commit81b204e8a126a9c3c5de51cc23f0233c842de429 (patch)
tree8a22fdd7a51e1c84fb959c0e58b261930760e991
parent36d9eeb9c7a4c0044d3ac7cde65b2344eb649c64 (diff)
downloadnixlib-81b204e8a126a9c3c5de51cc23f0233c842de429.tar
nixlib-81b204e8a126a9c3c5de51cc23f0233c842de429.tar.gz
nixlib-81b204e8a126a9c3c5de51cc23f0233c842de429.tar.bz2
nixlib-81b204e8a126a9c3c5de51cc23f0233c842de429.tar.lz
nixlib-81b204e8a126a9c3c5de51cc23f0233c842de429.tar.xz
nixlib-81b204e8a126a9c3c5de51cc23f0233c842de429.tar.zst
nixlib-81b204e8a126a9c3c5de51cc23f0233c842de429.zip
python.pkgs.cython: use pkg-config instead of python.pkgs.pkgconfig
It does not need the Python interface to pkg-config.

Note I think the majority of Python packages that use pkgconfig should
actually use pkg-config.
-rw-r--r--pkgs/development/python-modules/Cython/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/Cython/default.nix b/pkgs/development/python-modules/Cython/default.nix
index 2d987abb3e48..f0b8a5dd560d 100644
--- a/pkgs/development/python-modules/Cython/default.nix
+++ b/pkgs/development/python-modules/Cython/default.nix
@@ -5,7 +5,7 @@
 , fetchpatch
 , python
 , glibcLocales
-, pkgconfig
+, pkg-config
 , gdb
 , numpy
 , ncurses
@@ -34,7 +34,7 @@ in buildPythonPackage rec {
   };
 
   nativeBuildInputs = [
-    pkgconfig
+    pkg-config
   ];
   checkInputs = [
     numpy ncurses