lol

Merge pull request #165372 from SuperSandro2000/certifi

authored by

Martin Weinelt and committed by
GitHub
252eef0a b8e952d4

+3 -3
+3 -3
pkgs/development/python-modules/certifi/default.nix
··· 1 { lib 2 , buildPythonPackage 3 - , isPy27 4 , fetchFromGitHub 5 , pytestCheckHook 6 }: ··· 9 pname = "certifi"; 10 version = "2021.10.08"; 11 12 - disabled = isPy27; 13 14 src = fetchFromGitHub { 15 owner = pname; ··· 28 homepage = "https://github.com/certifi/python-certifi"; 29 description = "Python package for providing Mozilla's CA Bundle"; 30 license = licenses.isc; 31 - maintainers = with maintainers; [ koral ]; 32 }; 33 }
··· 1 { lib 2 , buildPythonPackage 3 + , pythonOlder 4 , fetchFromGitHub 5 , pytestCheckHook 6 }: ··· 9 pname = "certifi"; 10 version = "2021.10.08"; 11 12 + disabled = pythonOlder "3.5"; 13 14 src = fetchFromGitHub { 15 owner = pname; ··· 28 homepage = "https://github.com/certifi/python-certifi"; 29 description = "Python package for providing Mozilla's CA Bundle"; 30 license = licenses.isc; 31 + maintainers = with maintainers; [ koral SuperSandro2000 ]; 32 }; 33 }