Commit 884591ea authored by Nazar Vinnichuk's avatar Nazar Vinnichuk
Browse files

python3Packages.types-certifi: init at 2021.10.8.3

parent 146fb01d
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 { };