python3Packages.whodap: 0.1.12 -> 0.1.13

This commit is contained in:
R. Ryantm
2025-08-07 06:47:07 +00:00
parent 3ed93ea844
commit 170041f1f7
@@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "whodap";
version = "0.1.12";
version = "0.1.13";
format = "setuptools";
disabled = pythonOlder "3.8";
@@ -18,8 +18,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "pogzyb";
repo = "whodap";
tag = "v${version}";
hash = "sha256-kw7bmkpDNb/PK/Q2tSbG+ju0G+6tdSy3RaNDaNOVYnE=";
tag = version;
hash = "sha256-VSFtHjdG9pJAryGUgwI0NxxaW0JiXEHU7aVvXYxymtc=";
};
propagatedBuildInputs = [ httpx ];
@@ -39,7 +39,7 @@ buildPythonPackage rec {
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}";
changelog = "https://github.com/pogzyb/whodap/releases/tag/${src.tag}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};