python3Packages.whodap: 0.1.12 -> 0.1.13

R. Ryantm 170041f1 3ed93ea8

Changed files
+4 -4
pkgs
development
python-modules
whodap
+4 -4
pkgs/development/python-modules/whodap/default.nix
···
buildPythonPackage rec {
pname = "whodap";
-
version = "0.1.12";
+
version = "0.1.13";
format = "setuptools";
disabled = pythonOlder "3.8";
···
src = fetchFromGitHub {
owner = "pogzyb";
repo = "whodap";
-
tag = "v${version}";
-
hash = "sha256-kw7bmkpDNb/PK/Q2tSbG+ju0G+6tdSy3RaNDaNOVYnE=";
+
tag = version;
+
hash = "sha256-VSFtHjdG9pJAryGUgwI0NxxaW0JiXEHU7aVvXYxymtc=";
};
propagatedBuildInputs = [ httpx ];
···
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 ];
};