nixpkgs/pkgs/development/python-modules/pkgconfig/default.nix
Robert Schütz 14d21f60a8 Revert "python*Packages.pkgconfig: try avoiding multiple breakages"
This reverts commit 3d979f432c.
The remaining problems should be fixed by eb3f0aef43.
2019-02-02 15:43:54 +01:00

31 lines
723 B
Nix

{ lib, buildPythonPackage, fetchPypi, nose, pkgconfig }:
buildPythonPackage rec {
pname = "pkgconfig";
version = "1.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "048c3b457da7b6f686b647ab10bf09e2250e4c50acfe6f215398a8b5e6fcdb52";
};
checkInputs = [ nose ];
nativeBuildInputs = [ pkgconfig ];
checkPhase = ''
nosetests
'';
patches = [ ./executable.patch ];
postPatch = ''
substituteInPlace pkgconfig/pkgconfig.py --replace 'PKG_CONFIG_EXE = "pkg-config"' 'PKG_CONFIG_EXE = "${pkgconfig}/bin/pkg-config"'
'';
meta = with lib; {
description = "Interface Python with pkg-config";
homepage = https://github.com/matze/pkgconfig;
license = licenses.mit;
};
}