python3Packages.types-certifi: init at 2021.10.8.3
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
})
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user