python3Packages.types-pyopenssl: init at 23.0.0.4

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
This commit is contained in:
2023-03-19 09:08:53 +01:00
parent 21c47047c8
commit bd86493766
2 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchPypi
, cryptography
}:
buildPythonPackage rec {
pname = "types-pyOpenSSL";
version = "23.0.0.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-izVQtuGdUc54qr1ySw2OvZYggaX86V5/haWS3828Fr8=";
};
propagatedBuildInputs = [
cryptography
];
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [
"OpenSSL-stubs"
];
meta = with lib; {
description = "Typing stubs for pyopenssl";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ gador ];
};
}

View File

@@ -12017,6 +12017,8 @@ self: super: with self; {
types-psutil = callPackage ../development/python-modules/types-psutil { };
types-pyopenssl = callPackage ../development/python-modules/types-pyopenssl { };
types-python-dateutil = callPackage ../development/python-modules/types-python-dateutil { };
types-pytz = callPackage ../development/python-modules/types-pytz { };