about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2022-03-23 06:54:01 +0100
committerGitHub <noreply@github.com>2022-03-23 06:54:01 +0100
commit252eef0abcc5252d00670f8b14379de61682e40d (patch)
tree5d81da4ca53743b0b38a855a58380743b4bfafaf /pkgs/development/python-modules
parentb8e952d47489c28bcf5094a6c287d6fb5b9beb9c (diff)
parent80e7ea13fcaf5cfd59de5be5f586a7e1db71cbe7 (diff)
downloadnixlib-252eef0abcc5252d00670f8b14379de61682e40d.tar
nixlib-252eef0abcc5252d00670f8b14379de61682e40d.tar.gz
nixlib-252eef0abcc5252d00670f8b14379de61682e40d.tar.bz2
nixlib-252eef0abcc5252d00670f8b14379de61682e40d.tar.lz
nixlib-252eef0abcc5252d00670f8b14379de61682e40d.tar.xz
nixlib-252eef0abcc5252d00670f8b14379de61682e40d.tar.zst
nixlib-252eef0abcc5252d00670f8b14379de61682e40d.zip
Merge pull request #165372 from SuperSandro2000/certifi
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 ];
   };
 }