blob: 51488677a3cb151dbc0b4d292d782b047b93c12a (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytest-asyncio,
pytestCheckHook,
httpx,
setuptools,
}:
buildPythonPackage rec {
pname = "whodap";
version = "0.1.14";
pyproject = true;
src = fetchFromGitHub {
owner = "pogzyb";
repo = "whodap";
tag = "v${version}";
hash = "sha256-VSFtHjdG9pJAryGUgwI0NxxaW0JiXEHU7aVvXYxymtc=";
};
build-system = [ setuptools ];
dependencies = [ httpx ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
disabledTestPaths = [
# Requires network access
"tests/test_client.py"
];
pythonImportsCheck = [ "whodap" ];
meta = {
description = "Python RDAP utility for querying and parsing information about domain names";
homepage = "https://github.com/pogzyb/whodap";
changelog = "https://github.com/pogzyb/whodap/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|