Unverified Commit 5617e325 authored by Jonas Heinrich's avatar Jonas Heinrich Committed by GitHub
Browse files

Merge pull request #232680 from fabaff/cloup-bump

python311Packages.cloup: 2.0.0.post1 -> 2.1.0
parents 36e736e5 f32672f9
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -9,13 +9,14 @@

buildPythonPackage rec {
  pname = "cloup";
  version = "2.0.0.post1";
  version = "2.1.0";
  format = "setuptools";

  disabled = pythonOlder "3.6";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-FDDJB1Bi4Jy2TNhKt6/l1azSit9WHWqzEJ6xl1u9e2s=";
    hash = "sha256-3ULHyc1JP63FOkI2+WF4o/EYu72UWn+K2vzVA02CaXE=";
  };

  nativeBuildInputs = [
@@ -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.
    '';