My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/whodap/default.nix

48 lines
943 B

{ lib
, asynctest
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, async_generator
, httpx
}:
buildPythonPackage rec {
pname = "whodap";
version = "0.1.5";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "pogzyb";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-Jm3+WMGuYc910TNDVzHjYcbNcts668D3xYORXxozWqA=";
};
propagatedBuildInputs = [
httpx
] ++ lib.optionals (pythonOlder "3.7") [
async_generator
];
checkInputs = [
asynctest
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";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}