about summary refs log tree commit diff
path: root/pkgs/development/python-modules/justnimbus
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-12-21 14:27:01 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2023-12-21 14:27:01 +0100
commit4be85af63e78aadaa0afebf7b431a3b485061a2c (patch)
tree6b92952196c9b34aa5c62a2cd5ab9562f6d88a2b /pkgs/development/python-modules/justnimbus
parentdb13dfbb6bbb26eeff10a2575a97179124e0a9a5 (diff)
python311Packages.justnimbus: update disabled
- add changelog to meta
Diffstat (limited to 'pkgs/development/python-modules/justnimbus')
-rw-r--r--pkgs/development/python-modules/justnimbus/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/justnimbus/default.nix b/pkgs/development/python-modules/justnimbus/default.nix
index 684af3835f034..013e4670aa8f5 100644
--- a/pkgs/development/python-modules/justnimbus/default.nix
+++ b/pkgs/development/python-modules/justnimbus/default.nix
@@ -9,13 +9,13 @@
 buildPythonPackage rec {
   pname = "justnimbus";
   version = "0.7.3";
-  format = "pyproject";
+  pyproject = true;
 
-  disabled = pythonOlder "3.7";
+  disabled = pythonOlder "3.10";
 
   src = fetchFromGitHub {
     owner = "kvanzuijlen";
-    repo = pname;
+    repo = "justnimbus";
     rev = "refs/tags/${version}";
     hash = "sha256-JO8T0JItkkNHxlnDKOO8kM9KSzT7QML4sszPymgXSBA=";
   };
@@ -38,6 +38,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Library for the JustNimbus API";
     homepage = "https://github.com/kvanzuijlen/justnimbus";
+    changelog = "https://github.com/kvanzuijlen/justnimbus/releases/tag/${version}";
     license = licenses.asl20;
     maintainers = with maintainers; [ fab ];
   };