about summary refs log tree commit diff
path: root/pkgs/development/interpreters/python
diff options
context:
space:
mode:
authorAndy Dirnberger <andy@dirnberger.me>2018-06-28 23:40:47 -0400
committerAndy Dirnberger <andy@dirnberger.me>2018-06-28 23:40:47 -0400
commit780959ce8f517d6cc35c89908bf44cadd9fd8a90 (patch)
tree1ed9bd48f681945e7dd39b7aea628f375e2e201f /pkgs/development/interpreters/python
parent68f945da6daee20b6f0a799ff499fba39adf5a1e (diff)
downloadnixlib-780959ce8f517d6cc35c89908bf44cadd9fd8a90.tar
nixlib-780959ce8f517d6cc35c89908bf44cadd9fd8a90.tar.gz
nixlib-780959ce8f517d6cc35c89908bf44cadd9fd8a90.tar.bz2
nixlib-780959ce8f517d6cc35c89908bf44cadd9fd8a90.tar.lz
nixlib-780959ce8f517d6cc35c89908bf44cadd9fd8a90.tar.xz
nixlib-780959ce8f517d6cc35c89908bf44cadd9fd8a90.tar.zst
nixlib-780959ce8f517d6cc35c89908bf44cadd9fd8a90.zip
python36: fix version in identifier
Diffstat (limited to 'pkgs/development/interpreters/python')
-rw-r--r--pkgs/development/interpreters/python/cpython/3.6/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/python/cpython/3.6/default.nix b/pkgs/development/interpreters/python/cpython/3.6/default.nix
index 5ee5c9179534..fc68aae1c045 100644
--- a/pkgs/development/interpreters/python/cpython/3.6/default.nix
+++ b/pkgs/development/interpreters/python/cpython/3.6/default.nix
@@ -207,7 +207,7 @@ in stdenv.mkDerivation {
     withPackages = import ../../with-packages.nix { inherit buildEnv pythonPackages;};
     pkgs = pythonPackages;
     isPy3 = true;
-    isPy35 = true;
+    isPy36 = true;
     is_py3k = true;  # deprecated
     interpreter = "${self}/bin/${executable}";
   };