about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cffi
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-05-01 16:43:41 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-05-01 10:58:33 -0700
commiteeeee817ca0cf7b60ddaa65d3021c3a4a241e0c0 (patch)
tree3d0dbdd4fd67b8d5febdd2dcbaf9431b498e23b6 /pkgs/development/python-modules/cffi
parent506fa8baf0f89a4f273fceeb4a4a60887f8caad1 (diff)
pythonPackages.cffi: move libffi to buildInputs
Diffstat (limited to 'pkgs/development/python-modules/cffi')
-rw-r--r--pkgs/development/python-modules/cffi/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/cffi/default.nix b/pkgs/development/python-modules/cffi/default.nix
index 496124bfa1135..92899ed85e583 100644
--- a/pkgs/development/python-modules/cffi/default.nix
+++ b/pkgs/development/python-modules/cffi/default.nix
@@ -11,7 +11,9 @@ if isPyPy then null else buildPythonPackage rec {
 
   outputs = [ "out" "dev" ];
 
-  propagatedBuildInputs = [ libffi pycparser ];
+  buildInputs = [ libffi ];
+
+  propagatedBuildInputs = [ pycparser ];
 
   # On Darwin, the cffi tests want to hit libm a lot, and look for it in a global
   # impure search path. It's obnoxious how much repetition there is, and how difficult