python310Packages.gamble: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-07 10:57:32 +01:00 committed by GitHub
parent c0a6e84882
commit d0b51fac32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,11 +8,13 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "gamble"; pname = "gamble";
version = "0.11"; version = "0.11";
format = "setuptools";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-zsEBqhKidgO1e0lpKhw+LY75I2Df+IefNLaSkBBFKFU="; hash = "sha256-zsEBqhKidgO1e0lpKhw+LY75I2Df+IefNLaSkBBFKFU=";
}; };
checkInputs = [ checkInputs = [
@ -26,6 +28,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Collection of gambling classes/tools"; description = "Collection of gambling classes/tools";
homepage = "https://github.com/jpetrucciani/gamble"; homepage = "https://github.com/jpetrucciani/gamble";
changelog = "https://github.com/jpetrucciani/gamble/releases/tag/${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ jpetrucciani ]; maintainers = with maintainers; [ jpetrucciani ];
}; };