Unverified Commit f32672f9 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python311Packages.cloup: add changelog to meta

parent 37c2ebcd
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@
buildPythonPackage rec {
  pname = "cloup";
  version = "2.1.0";
  format = "setuptools";

  disabled = pythonOlder "3.6";

@@ -30,11 +31,14 @@ buildPythonPackage rec {
    pytestCheckHook
  ];

  pythonImportsCheck = [ "cloup" ];
  pythonImportsCheck = [
    "cloup"
  ];

  meta = with lib; {
    homepage = "https://github.com/janLuke/cloup";
    description = "Click extended with option groups, constraints, aliases, help themes";
    changelog = "https://github.com/janluke/cloup/releases/tag/v${version}";
    longDescription = ''
      Enriches Click with option groups, constraints, command aliases, help sections for subcommands, themes for --help and other stuff.
    '';