summary refs log tree commit diff
path: root/pkgs/development/python-modules/configparser/default.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-04-05 19:40:39 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-04-05 19:43:44 +0200
commit75e41e34ed2b2b8f6e43e65b7310fd38b15bf89e (patch)
tree1b3acafc97b1dc2b82ffbbf9f0323b96aa5f68d8 /pkgs/development/python-modules/configparser/default.nix
parent62c35fd1c0c5bcce1c53ddac090932419657f1c5 (diff)
downloadnixpkgs-75e41e34ed2b2b8f6e43e65b7310fd38b15bf89e.tar
nixpkgs-75e41e34ed2b2b8f6e43e65b7310fd38b15bf89e.tar.gz
nixpkgs-75e41e34ed2b2b8f6e43e65b7310fd38b15bf89e.tar.bz2
nixpkgs-75e41e34ed2b2b8f6e43e65b7310fd38b15bf89e.tar.lz
nixpkgs-75e41e34ed2b2b8f6e43e65b7310fd38b15bf89e.tar.xz
nixpkgs-75e41e34ed2b2b8f6e43e65b7310fd38b15bf89e.tar.zst
nixpkgs-75e41e34ed2b2b8f6e43e65b7310fd38b15bf89e.zip
python.pkgs.configparser: build with all Python versions
I think the disabled condition was accidentally modified in
ecc939eb194b49f86707c8a215b60968f9b8a335

configparser is a backport of 3.2 functionality. While it is only
intended for Python < 3.2, it works fine with other versions. Even with
pypy, nowadays.
Diffstat (limited to 'pkgs/development/python-modules/configparser/default.nix')
-rw-r--r--pkgs/development/python-modules/configparser/default.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/configparser/default.nix b/pkgs/development/python-modules/configparser/default.nix
index 8d1539c241d..8e770c504c3 100644
--- a/pkgs/development/python-modules/configparser/default.nix
+++ b/pkgs/development/python-modules/configparser/default.nix
@@ -3,7 +3,6 @@
 buildPythonPackage rec {
   pname = "configparser";
   version = "3.5.0";
-  disabled = isPy3k;
 
   src = fetchPypi {
     inherit pname version;