Files
nixpkgs/pkgs/development/python-modules/ipwhois/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

73 lines
1.5 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
defusedxml,
dnspython,
fetchFromGitHub,
iana-etc,
libredirect,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "ipwhois";
version = "1.3.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "secynic";
repo = "ipwhois";
tag = "v${version}";
hash = "sha256-PY3SUPELcCvS/o5kfko4OD1BlTc9DnyqfkSFuzcAOSY=";
};
__darwinAllowLocalNetworking = true;
pythonRelaxDeps = [ "dnspython" ];
build-system = [ setuptools ];
dependencies = [
defusedxml
dnspython
];
nativeCheckInputs = [
libredirect.hook
pytestCheckHook
];
pythonImportsCheck = [ "ipwhois" ];
preCheck = lib.optionalString stdenv.hostPlatform.isLinux ''
echo "nameserver 127.0.0.1" > resolv.conf
export NIX_REDIRECTS=/etc/protocols=${iana-etc}/etc/protocols:/etc/resolv.conf=$(realpath resolv.conf)
'';
disabledTestPaths = [
# Tests require network access
"ipwhois/tests/online/"
# Stress test
"ipwhois/tests/stress/test_experimental.py"
];
disabledTests = [
"test_lookup"
"test_unique_addresses"
"test_get_http_json"
];
meta = {
description = "Library to retrieve and parse whois data";
homepage = "https://github.com/secynic/ipwhois";
changelog = "https://github.com/secynic/ipwhois/blob/v${version}/CHANGES.rst";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ fab ];
};
}