about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2022-03-23 05:51:15 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2022-03-23 06:33:21 +0100
commit80e7ea13fcaf5cfd59de5be5f586a7e1db71cbe7 (patch)
tree9998a8882a6463a80e0685aa8ceeb01383bbb5ec /pkgs/development/python-modules
parent85a633de9fb69e1becebe8d69dbf8ad12b06e08d (diff)
downloadnixlib-80e7ea13fcaf5cfd59de5be5f586a7e1db71cbe7.tar
nixlib-80e7ea13fcaf5cfd59de5be5f586a7e1db71cbe7.tar.gz
nixlib-80e7ea13fcaf5cfd59de5be5f586a7e1db71cbe7.tar.bz2
nixlib-80e7ea13fcaf5cfd59de5be5f586a7e1db71cbe7.tar.lz
nixlib-80e7ea13fcaf5cfd59de5be5f586a7e1db71cbe7.tar.xz
nixlib-80e7ea13fcaf5cfd59de5be5f586a7e1db71cbe7.tar.zst
nixlib-80e7ea13fcaf5cfd59de5be5f586a7e1db71cbe7.zip
python39Packages.certifi: disable on python older 3.5, add SuperSandro2000 as maintainer
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/certifi/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/certifi/default.nix b/pkgs/development/python-modules/certifi/default.nix
index 68a0ca42986e..bc361806d87a 100644
--- a/pkgs/development/python-modules/certifi/default.nix
+++ b/pkgs/development/python-modules/certifi/default.nix
@@ -1,6 +1,6 @@
 { lib
 , buildPythonPackage
-, isPy27
+, pythonOlder
 , fetchFromGitHub
 , pytestCheckHook
 }:
@@ -9,7 +9,7 @@ buildPythonPackage rec {
   pname = "certifi";
   version = "2021.10.08";
 
-  disabled = isPy27;
+  disabled = pythonOlder "3.5";
 
   src = fetchFromGitHub {
     owner = pname;
@@ -28,6 +28,6 @@ buildPythonPackage rec {
     homepage = "https://github.com/certifi/python-certifi";
     description = "Python package for providing Mozilla's CA Bundle";
     license = licenses.isc;
-    maintainers = with maintainers; [ koral ];
+    maintainers = with maintainers; [ koral SuperSandro2000 ];
   };
 }