From 75e41e34ed2b2b8f6e43e65b7310fd38b15bf89e Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 5 Apr 2018 19:40:39 +0200 Subject: [PATCH] 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. --- pkgs/development/python-modules/configparser/default.nix | 1 - 1 file changed, 1 deletion(-) 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;