mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
12ca43ae1e
Diff: https://github.com/secynic/ipwhois/compare/refs/tags/v1.2.0...v1.3.0 Changelog: https://github.com/secynic/ipwhois/blob/v1.3.0/CHANGES.rst
72 lines
1.5 KiB
Nix
72 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
defusedxml,
|
|
dnspython,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
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";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-PY3SUPELcCvS/o5kfko4OD1BlTc9DnyqfkSFuzcAOSY=";
|
|
};
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
pythonRelaxDeps = [ "dnspython" ];
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
defusedxml
|
|
dnspython
|
|
];
|
|
|
|
nativeCheckInputs = [ 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) \
|
|
LD_PRELOAD=${libredirect}/lib/libredirect.so
|
|
'';
|
|
|
|
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 = with lib; {
|
|
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 = licenses.bsd2;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|