python3Packages.types-ipaddress: init at 1.0.8

This commit is contained in:
jacobi petrucciani 2022-03-01 00:44:22 -05:00 committed by Jonathan Ringer
parent 12af164c01
commit a9d567eb62
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-ipaddress";
version = "1.0.8";
src = fetchPypi {
inherit pname version;
sha256 = "0h9q9pjvw1ap5k70ygp750d096jkzymxlhx87yh0pr9mb6zg6gd0";
};
pythonImportsCheck = [
"ipaddress-python2-stubs"
];
meta = with lib; {
description = "Typing stubs for ipaddress";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ jpetrucciani ];
};
}

View File

@ -10177,6 +10177,8 @@ in {
types-futures = callPackage ../development/python-modules/types-futures { };
types-ipaddress = callPackage ../development/python-modules/types-ipaddress { };
types-protobuf = callPackage ../development/python-modules/types-protobuf { };
types-pytz = callPackage ../development/python-modules/types-pytz { };