python310Packages.gamble: add changelog to meta
This commit is contained in:
parent
c0a6e84882
commit
d0b51fac32
1 changed files with 4 additions and 1 deletions
|
@ -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 ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue