summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-05-01 22:13:31 +0200
committerGitHub <noreply@github.com>2023-05-01 22:13:31 +0200
commit92fa862d74e8991b0c43a719c7508c991f188f33 (patch)
treedb21758c93ecb0b7a4e13bc5c774c3e75df0944a
parente07db3e3795205a024905685450630a27315c08d (diff)
downloadnixpkgs-92fa862d74e8991b0c43a719c7508c991f188f33.tar
nixpkgs-92fa862d74e8991b0c43a719c7508c991f188f33.tar.gz
nixpkgs-92fa862d74e8991b0c43a719c7508c991f188f33.tar.bz2
nixpkgs-92fa862d74e8991b0c43a719c7508c991f188f33.tar.lz
nixpkgs-92fa862d74e8991b0c43a719c7508c991f188f33.tar.xz
nixpkgs-92fa862d74e8991b0c43a719c7508c991f188f33.tar.zst
nixpkgs-92fa862d74e8991b0c43a719c7508c991f188f33.zip
python310Packages.inform: add changelog to meta
- disable on unsupported Python releases
-rw-r--r--pkgs/development/python-modules/inform/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/inform/default.nix b/pkgs/development/python-modules/inform/default.nix
index 69da3bcf02b..a95e9e9cc8e 100644
--- a/pkgs/development/python-modules/inform/default.nix
+++ b/pkgs/development/python-modules/inform/default.nix
@@ -6,6 +6,7 @@
 , six
 , hypothesis
 , pytestCheckHook
+, pythonOlder
 }:
 
 buildPythonPackage rec {
@@ -13,6 +14,8 @@ buildPythonPackage rec {
   version = "1.28";
   format = "pyproject";
 
+  disabled = pythonOlder "3.7";
+
   src = fetchFromGitHub {
     owner = "KenKundert";
     repo = "inform";
@@ -46,6 +49,7 @@ buildPythonPackage rec {
       allow you to simply and cleanly print different types of messages.
     '';
     homepage = "https://inform.readthedocs.io";
+    changelog = "https://github.com/KenKundert/inform/blob/v${version}/doc/releases.rst";
     license = licenses.gpl3Only;
     maintainers = with maintainers; [ jeremyschlatter ];
   };