pythonPackages.pkgconfig: 1.1.0 -> 1.3.1

This commit is contained in:
Spencer Baugh 2018-03-07 16:49:39 +00:00 committed by Frederik Rietdijk
parent 146d08bd6e
commit a7a48fddc3

View file

@ -9994,14 +9994,11 @@ in {
pkgconfig = buildPythonPackage rec { pkgconfig = buildPythonPackage rec {
name = "pkgconfig-${version}"; name = "pkgconfig-${version}";
version = "1.1.0"; version = "1.3.1";
# pypy: SyntaxError: __future__ statements must appear at beginning of file
disabled = isPyPy;
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "mirror://pypi/p/pkgconfig/${name}.tar.gz"; url = "mirror://pypi/p/pkgconfig/${name}.tar.gz";
sha256 = "709daaf077aa2b33bedac12706373412c3683576a43013bbaa529fc2769d80df"; sha256 = "107x2wmchlch8saixb488cgjz9n6inl38wi7nxkb942rbaapxiqb";
}; };
buildInputs = with self; [ nose ]; buildInputs = with self; [ nose ];
@ -10015,8 +10012,6 @@ in {
}; };
# nosetests needs to be run explicitly. # nosetests needs to be run explicitly.
# Note that the distributed archive does not actually contain any tests.
# https://github.com/matze/pkgconfig/issues/9
checkPhase = '' checkPhase = ''
nosetests nosetests
''; '';