cc6645aa49
Diff: https://github.com/pogzyb/whodap/compare/refs/tags/v0.1.10...v0.1.11 Changelog: https://github.com/pogzyb/whodap/releases/tag/v0.1.11
49 lines
985 B
Nix
49 lines
985 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, httpx
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "whodap";
|
|
version = "0.1.11";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pogzyb";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-IX4sxuOxH4rXZlpRiWncXvaB2TkfZl1rKioZ3eqDGHs=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
httpx
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Requires network access
|
|
"tests/test_client.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"whodap"
|
|
];
|
|
|
|
meta = with lib; {
|
|
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/v${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|