python312Packages.cymruwhois: init at 1.6

Python client for the whois.cymru.com service

https://github.com/JustinAzoff/python-cymruwhois
This commit is contained in:
Fabian Affolter 2024-10-18 01:08:32 +02:00
parent 144db67203
commit ff5ebf9e58
2 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,48 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
python-memcached,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "cymruwhois";
version = "1.6";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "JustinAzoff";
repo = "python-cymruwhois";
rev = "refs/tags/${version}";
hash = "sha256-d9m668JYI9mxUycoVWyaDCR7SOca+ebymZxWtgSPWNU=";
};
build-system = [ setuptools ];
optional-dependencies = {
CACHE = [ python-memcached ];
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "cymruwhois" ];
disabledTests = [
# Tests require network access
"test_asn"
# AssertionError
"test_doctest"
];
meta = {
description = "Python client for the whois.cymru.com service";
homepage = "https://github.com/JustinAzoff/python-cymruwhois";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}

View File

@ -2802,6 +2802,8 @@ self: super: with self; {
cymem = callPackage ../development/python-modules/cymem { };
cymruwhois = callPackage ../development/python-modules/cymruwhois { };
cypari2 = callPackage ../development/python-modules/cypari2 { };
cypherpunkpay = callPackage ../development/python-modules/cypherpunkpay { };