From c36a6f0c26088f6c6acac35d9c447a880d3a750c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 22 Dec 2025 11:13:27 +0100 Subject: [PATCH] python313Packages.whodap: 0.1.13 -> 0.1.14 Changelog: https://github.com/pogzyb/whodap/releases/tag/v0.1.14 --- .../python-modules/whodap/default.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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 ]; }; }