python3Packages.types-ipaddress: init at 1.0.8
This commit is contained in:
parent
12af164c01
commit
a9d567eb62
2 changed files with 27 additions and 0 deletions
25
pkgs/development/python-modules/types-ipaddress/default.nix
Normal file
25
pkgs/development/python-modules/types-ipaddress/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue