Merge pull request #194218 from fabaff/bump-certifi

This commit is contained in:
Sandro 2022-10-03 20:09:38 +02:00 committed by GitHub
commit 6cf0e5029a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,22 +7,24 @@
buildPythonPackage rec {
pname = "certifi";
version = "2022.06.15";
version = "2022.09.24";
disabled = pythonOlder "3.5";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = pname;
repo = "python-certifi";
rev = version;
sha256 = "sha256-CKO8wF5FMGLIZbTd7YrKE9OWV9MbfQ2+BMc5IPk1FFU=";
hash = "sha256-B6LO6AfG9cfpyNI7hj3VjmGTFsrrIkDYO4gPMkZY74w=";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "certifi" ];
pythonImportsCheck = [
"certifi"
];
meta = with lib; {
homepage = "https://github.com/certifi/python-certifi";