about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-12-07 10:57:32 +0100
committerGitHub <noreply@github.com>2022-12-07 10:57:32 +0100
commitd0b51fac32fc0c4a9be66b7b3c245b3831931502 (patch)
tree4663c59bc32a78b4dcf22762df1a933f750097f1
parentc0a6e84882505383ca4a095e05f162cdd1077b18 (diff)
python310Packages.gamble: add changelog to meta
-rw-r--r--pkgs/development/python-modules/gamble/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/gamble/default.nix b/pkgs/development/python-modules/gamble/default.nix
index ac7e0fd108a20..e5196024c6f99 100644
--- a/pkgs/development/python-modules/gamble/default.nix
+++ b/pkgs/development/python-modules/gamble/default.nix
@@ -8,11 +8,13 @@
 buildPythonPackage rec {
   pname = "gamble";
   version = "0.11";
+  format = "setuptools";
+
   disabled = pythonOlder "3.6";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-zsEBqhKidgO1e0lpKhw+LY75I2Df+IefNLaSkBBFKFU=";
+    hash = "sha256-zsEBqhKidgO1e0lpKhw+LY75I2Df+IefNLaSkBBFKFU=";
   };
 
   checkInputs = [
@@ -26,6 +28,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Collection of gambling classes/tools";
     homepage = "https://github.com/jpetrucciani/gamble";
+    changelog = "https://github.com/jpetrucciani/gamble/releases/tag/${version}";
     license = licenses.mit;
     maintainers = with maintainers; [ jpetrucciani ];
   };