diff --git a/pkgs/development/python-modules/whodap/default.nix b/pkgs/development/python-modules/whodap/default.nix index 1aa53ff63e27..51488677a3cb 100644 --- a/pkgs/development/python-modules/whodap/default.nix +++ b/pkgs/development/python-modules/whodap/default.nix @@ -4,25 +4,25 @@ fetchFromGitHub, pytest-asyncio, pytestCheckHook, - pythonOlder, httpx, + setuptools, }: buildPythonPackage rec { pname = "whodap"; - version = "0.1.13"; - format = "setuptools"; - - disabled = pythonOlder "3.8"; + version = "0.1.14"; + pyproject = true; src = fetchFromGitHub { owner = "pogzyb"; repo = "whodap"; - tag = version; + tag = "v${version}"; hash = "sha256-VSFtHjdG9pJAryGUgwI0NxxaW0JiXEHU7aVvXYxymtc="; }; - propagatedBuildInputs = [ httpx ]; + build-system = [ setuptools ]; + + dependencies = [ httpx ]; nativeCheckInputs = [ pytest-asyncio @@ -40,7 +40,7 @@ buildPythonPackage rec { 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 = with lib.licenses; [ mit ]; + license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; }