summary refs log tree commit diff
path: root/pkgs/top-level/python-packages.nix
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2022-03-03 19:24:40 -0800
committerJonathan Ringer <jonringer117@gmail.com>2022-03-03 19:30:21 -0800
commit82542559e62975914c4ede799d56c2d46dc51748 (patch)
tree66fff96d19bb4478b3c5f27dd2b119d7af4d36e2 /pkgs/top-level/python-packages.nix
parent86a48d31bf0ae616c7305103b7fa8ded6963802f (diff)
downloadnixpkgs-82542559e62975914c4ede799d56c2d46dc51748.tar
nixpkgs-82542559e62975914c4ede799d56c2d46dc51748.tar.gz
nixpkgs-82542559e62975914c4ede799d56c2d46dc51748.tar.bz2
nixpkgs-82542559e62975914c4ede799d56c2d46dc51748.tar.lz
nixpkgs-82542559e62975914c4ede799d56c2d46dc51748.tar.xz
nixpkgs-82542559e62975914c4ede799d56c2d46dc51748.tar.zst
nixpkgs-82542559e62975914c4ede799d56c2d46dc51748.zip
pythonPackages: add isPy310 and isPy311
Diffstat (limited to 'pkgs/top-level/python-packages.nix')
-rw-r--r--pkgs/top-level/python-packages.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 3a9c01a08fd..15c01582a0a 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -18,7 +18,7 @@ self:
 
 let
   inherit (self) callPackage;
-  inherit (python.passthru) isPy27 isPy35 isPy36 isPy37 isPy38 isPy39 isPy3k isPyPy pythonAtLeast pythonOlder;
+  inherit (python.passthru) isPy27 isPy35 isPy36 isPy37 isPy38 isPy39 isPy310 isPy311 isPy3k isPyPy pythonAtLeast pythonOlder;
 
   namePrefix = python.libPrefix + "-";
 
@@ -107,7 +107,7 @@ in {
 
   inherit pkgs stdenv;
 
-  inherit (python.passthru) isPy27 isPy35 isPy36 isPy37 isPy38 isPy39 isPy3k isPyPy pythonAtLeast pythonOlder;
+  inherit (python.passthru) isPy27 isPy35 isPy36 isPy37 isPy38 isPy39 isPy310 isPy311 isPy3k isPyPy pythonAtLeast pythonOlder;
   inherit python bootstrapped-pip buildPythonPackage buildPythonApplication;
   inherit fetchPypi;
   inherit hasPythonModule requiredPythonModules makePythonPath disabled disabledIf;