python*Packages.pkgconfig: try avoiding multiple breakages
I don't feel like doing many commits like the parent one, but feel free to improve...
This commit is contained in:
parent
05c62669b9
commit
3d979f432c
1 changed files with 4 additions and 1 deletions
|
@ -11,7 +11,10 @@ buildPythonPackage rec {
|
|||
|
||||
checkInputs = [ nose ];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
# Apparently many our expressions get pythonPackages.pkgconfig and expect
|
||||
# to have the pkg-config executable on $PATH
|
||||
# For some reason, propagatedNativeBuildInputs don't seem enough.
|
||||
propagatedBuildInputs = [ pkgconfig ];
|
||||
|
||||
checkPhase = ''
|
||||
nosetests
|
||||
|
|
Loading…
Reference in a new issue