pythonPackages.cffi: move libffi to buildInputs
This commit is contained in:
parent
506fa8baf0
commit
eeeee817ca
|
@ -11,7 +11,9 @@ if isPyPy then null else buildPythonPackage rec {
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
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
|
# 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
|
# impure search path. It's obnoxious how much repetition there is, and how difficult
|
||||||
|
|
Loading…
Reference in New Issue