about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-05-12 09:37:42 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2024-05-12 09:37:42 +0200
commitb1d55c7e32fa1b143b35582375c35cd0d9fa59ad (patch)
tree5b9ffcf52e6e394bfa8f7e34765a082a41ed2912 /pkgs
parent22312bf8f0fc004cd9968c93a428f7c9c51926bb (diff)
python312Packages.adext: add changelog to meta
- disable on unsupported Python releases
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/adext/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/adext/default.nix b/pkgs/development/python-modules/adext/default.nix
index 01662f6d07fbb..8a7345613de79 100644
--- a/pkgs/development/python-modules/adext/default.nix
+++ b/pkgs/development/python-modules/adext/default.nix
@@ -5,6 +5,7 @@
   setuptools-scm,
   alarmdecoder,
   pytestCheckHook,
+  pythonOlder,
 }:
 
 buildPythonPackage rec {
@@ -12,6 +13,8 @@ buildPythonPackage rec {
   version = "0.4.3";
   pyproject = true;
 
+  disabled = pythonOlder "3.7";
+
   src = fetchFromGitHub {
     owner = "ajschmidt8";
     repo = "adext";
@@ -30,6 +33,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Python extension for AlarmDecoder";
     homepage = "https://github.com/ajschmidt8/adext";
+    changelog = "https://github.com/ajschmidt8/adext/releases/tag/v${version}";
     license = with licenses; [ mit ];
     maintainers = with maintainers; [ fab ];
   };