python3Packages.certifi: 2020.12.5 -> 2021.05.30

(cherry picked from commit 32e061be5275054fa6cc227d0ebaf76fd0288e02)
This commit is contained in:
Fabian Affolter 2021-06-04 10:54:31 +02:00 committed by github-actions[bot]
parent 15087f578c
commit 4af78d9ddb

View File

@ -5,21 +5,21 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "certifi"; pname = "certifi";
version = "2020.12.5"; version = "2021.5.30";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "177mdbw0livdjvp17sz6wsfrc32838m9y59v871gpgv2888raj8s"; sha256 = "sha256-K792/UMpYBOLPvbdo93gVE8ny/hUbEWOYLrzcZF7qe4=";
}; };
pythonImportsCheck = [ "certifi" ]; pythonImportsCheck = [ "certifi" ];
dontUseSetuptoolsCheck = true; dontUseSetuptoolsCheck = true;
meta = { meta = with lib; {
homepage = "https://certifi.io/"; homepage = "https://certifi.io/";
description = "Python package for providing Mozilla's CA Bundle"; description = "Python package for providing Mozilla's CA Bundle";
license = lib.licenses.isc; license = licenses.isc;
maintainers = with lib.maintainers; [ koral ]; maintainers = with maintainers; [ koral ];
}; };
} }