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