Merge pull request #165372 from SuperSandro2000/certifi

This commit is contained in:
Martin Weinelt 2022-03-23 06:54:01 +01:00 committed by GitHub
commit 252eef0abc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
};
}