blob: 52bce19e64b03284f783789aae99921d924df645 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "types-ipaddress";
version = "1.0.8";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "0h9q9pjvw1ap5k70ygp750d096jkzymxlhx87yh0pr9mb6zg6gd0";
};
pythonImportsCheck = [ "ipaddress-python2-stubs" ];
meta = {
description = "Typing stubs for ipaddress";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ jpetrucciani ];
};
}
|