about summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorSpencer Baugh <sbaugh@catern.com>2018-03-07 16:49:39 +0000
committerFrederik Rietdijk <fridh@fridh.nl>2018-06-21 07:42:50 +0200
commita7a48fddc348d92afdbce5130efc6607a383937f (patch)
treef248ad475400faff920f97f6687ae1f8a7550a4e /pkgs/top-level
parent146d08bd6eaf20083cace231175d83081d199854 (diff)
downloadnixlib-a7a48fddc348d92afdbce5130efc6607a383937f.tar
nixlib-a7a48fddc348d92afdbce5130efc6607a383937f.tar.gz
nixlib-a7a48fddc348d92afdbce5130efc6607a383937f.tar.bz2
nixlib-a7a48fddc348d92afdbce5130efc6607a383937f.tar.lz
nixlib-a7a48fddc348d92afdbce5130efc6607a383937f.tar.xz
nixlib-a7a48fddc348d92afdbce5130efc6607a383937f.tar.zst
nixlib-a7a48fddc348d92afdbce5130efc6607a383937f.zip
pythonPackages.pkgconfig: 1.1.0 -> 1.3.1
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/python-packages.nix9
1 files changed, 2 insertions, 7 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index d057cebf9f57..b9355c62c506 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -9994,14 +9994,11 @@ in {
 
   pkgconfig = buildPythonPackage rec {
     name = "pkgconfig-${version}";
-    version = "1.1.0";
-
-    # pypy: SyntaxError: __future__ statements must appear at beginning of file
-    disabled = isPyPy;
+    version = "1.3.1";
 
     src = pkgs.fetchurl {
       url = "mirror://pypi/p/pkgconfig/${name}.tar.gz";
-      sha256 = "709daaf077aa2b33bedac12706373412c3683576a43013bbaa529fc2769d80df";
+      sha256 = "107x2wmchlch8saixb488cgjz9n6inl38wi7nxkb942rbaapxiqb";
     };
 
     buildInputs = with self; [ nose ];
@@ -10015,8 +10012,6 @@ in {
     };
 
     # 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 = ''
       nosetests
     '';