python3Packages.whoisdomain: 1.20250220.2 -> 1.20250929.1 (#447951)

Nick Cao b5145352 17608283

Changed files
+5 -8
pkgs
development
python-modules
whoisdomain
+5 -8
pkgs/development/python-modules/whoisdomain/default.nix
···
buildPythonPackage,
fetchFromGitHub,
hatchling,
-
pythonOlder,
}:
buildPythonPackage rec {
pname = "whoisdomain";
-
version = "1.20250220.2";
+
version = "1.20250929.1";
pyproject = true;
-
disabled = pythonOlder "3.7";
-
src = fetchFromGitHub {
owner = "mboot-github";
repo = "WhoisDomain";
tag = version;
-
hash = "sha256-/f5zV0vgjOIIux4e0mXeFSfY8cNpfGkfeCs3djla2zM=";
+
hash = "sha256-dyppd/6cBIkiiGm4S3khaNZ2DDyRrxWjeMqGYOMZ9YM=";
};
-
nativeBuildInputs = [ hatchling ];
+
build-system = [ hatchling ];
pythonImportsCheck = [ "whoisdomain" ];
···
meta = with lib; {
description = "Module to perform whois lookups";
-
mainProgram = "whoisdomain";
homepage = "https://github.com/mboot-github/WhoisDomain";
-
changelog = "https://github.com/mboot-github/WhoisDomain/releases/tag/${version}";
+
changelog = "https://github.com/mboot-github/WhoisDomain/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
+
mainProgram = "whoisdomain";
};
}