pythonPackages.argparse: only for Python < 2.7

This commit is contained in:
Frederik Rietdijk 2017-02-12 10:27:36 +01:00
parent 2ce45fbf0d
commit 12d9eac8f0

View File

@ -1321,7 +1321,7 @@ in {
};
argparse = buildPythonPackage (rec {
argparse = if (pythonAtLeast "2.7") then null else buildPythonPackage (rec {
name = "argparse-1.4.0";
src = pkgs.fetchurl {