From 63bcd0788883dc45fb5bcd68c6f4e89c1c2087ae Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 4 Jan 2019 12:31:42 +0100 Subject: python: add isPy2 attribute to passthru Some packages relied on it. For consistency, also introduce isPy3 (which is the same as isPy3k). --- pkgs/development/interpreters/python/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'pkgs/development/interpreters') diff --git a/pkgs/development/interpreters/python/default.nix b/pkgs/development/interpreters/python/default.nix index bb5c3b3a97f5..f1461d784be0 100644 --- a/pkgs/development/interpreters/python/default.nix +++ b/pkgs/development/interpreters/python/default.nix @@ -27,7 +27,9 @@ with pkgs; isPy35 = pythonVersion == "3.5"; isPy36 = pythonVersion == "3.6"; isPy37 = pythonVersion == "3.7"; - isPy3k = lib.strings.substring 0 1 pythonVersion == "3"; + isPy2 = lib.strings.substring 0 1 pythonVersion == "2"; + isPy3 = lib.strings.substring 0 1 pythonVersion == "3"; + isPy3k = isPy3; isPyPy = interpreter == "pypy"; buildEnv = callPackage ./wrapper.nix { python = self; inherit (pythonPackages) requiredPythonModules; }; -- cgit 1.4.1