python310Packages.certifi: 2022.06.15 -> 2022.09.24

This commit is contained in:
Fabian Affolter 2022-10-03 14:32:29 +02:00
parent 5a199b93eb
commit f943f70ae7

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";