python3Packages.types-certifi: init at 2021.10.8.3

This commit is contained in:
Nazar Vinnichuk
2026-03-31 21:10:24 +03:00
parent 146fb01d7d
commit 884591ea2f
2 changed files with 35 additions and 0 deletions
@@ -0,0 +1,33 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "types-certifi";
version = "2021.10.8.3";
pyproject = true;
# Building typeshed subpackages from the GitHub repository requires packaging
# https://github.com/typeshed-internal/stub_uploader
# The switch to fetchFromGitHub can be made at once for all applicable types-*
# packages once stub_uploader is packaged
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-cs93mNFlvAt24cEN0eowl8cGPELCHWZFI7ko6ItVSk8=";
};
build-system = [ setuptools ];
# No tests
doCheck = false;
meta = {
description = "Typing stubs for certifi";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ Kharacternyk ];
};
})
+2
View File
@@ -20221,6 +20221,8 @@ self: super: with self; {
types-beautifulsoup4 = callPackage ../development/python-modules/types-beautifulsoup4 { };
types-certifi = callPackage ../development/python-modules/types-certifi { };
types-click = callPackage ../development/python-modules/types-click { };
types-colorama = callPackage ../development/python-modules/types-colorama { };