87f9c27ba9
GitOrigin-RevId: fe2ecaf706a5907b5e54d979fbde4924d84b65fc
68 lines
1.4 KiB
Nix
68 lines
1.4 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, python-socks
|
|
, pythonOlder
|
|
, tldextract
|
|
, whodap
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "asyncwhois";
|
|
version = "1.0.5";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pogzyb";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-ILKnJlPT8BuZK06xk7fWYXcdn9SRL5zA3+B6CfJwvKM=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
python-socks
|
|
tldextract
|
|
whodap
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "python-socks[asyncio]" "python-socks"
|
|
'';
|
|
|
|
disabledTests = [
|
|
# Tests require network access
|
|
"test_pywhois_aio_get_hostname_from_ip"
|
|
"test_pywhois_get_hostname_from_ip"
|
|
"test_pywhois_aio_lookup_ipv4"
|
|
"test_not_found"
|
|
"test_aio_from_whois_cmd"
|
|
"test_aio_get_hostname_from_ip"
|
|
"test_from_whois_cmd"
|
|
"test_get_hostname_from_ip"
|
|
"test_whois_query_run"
|
|
"test_whois_query_create_connection"
|
|
"test_whois_query_send_and_recv"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"asyncwhois"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python module for retrieving WHOIS information";
|
|
homepage = "https://github.com/pogzyb/asyncwhois";
|
|
changelog = "https://github.com/pogzyb/asyncwhois/releases/tag/v${version}";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|