about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-12-07 15:51:12 +0100
committerGitHub <noreply@github.com>2022-12-07 15:51:12 +0100
commit577f6a43e16d7566fd960eb1f445daf68cdc1a66 (patch)
treeb3957ed37e8c3bbc4f1adc3c9537efb4c2e8f5ff
parente62dbca3771f42c81dec4e704c09ef110ef3a3f8 (diff)
parent55209c4853dba165fca57dda4b970edb311fd19a (diff)
Merge pull request #204941 from r-ryantm/auto-update/python310Packages.gamble
python310Packages.gamble: 0.10 -> 0.11
-rw-r--r--pkgs/development/python-modules/gamble/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/gamble/default.nix b/pkgs/development/python-modules/gamble/default.nix
index 0df84510efd41..3b62893e149f1 100644
--- a/pkgs/development/python-modules/gamble/default.nix
+++ b/pkgs/development/python-modules/gamble/default.nix
@@ -7,12 +7,14 @@
 
 buildPythonPackage rec {
   pname = "gamble";
-  version = "0.10";
-  disabled = pythonOlder "3.6";
+  version = "0.11";
+  format = "setuptools";
+
+  disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "1lb5x076blnnz2hj7k92pyq0drbjwsls6pmnabpvyvs4ddhz5w9w";
+    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 ];
   };