Merge pull request #307946 from fabaff/rich-click-bump

python312Packages.rich-click: 1.7.4 -> 1.8.0,  robotframework-tidy: 4.11.0 -> 4.13.0
This commit is contained in:
Fabian Affolter 2024-05-22 15:19:15 +02:00 committed by GitHub
commit e55d010a5e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 18 additions and 21 deletions

View File

@ -6,14 +6,14 @@
python3.pkgs.buildPythonApplication rec {
pname = "robotframework-tidy";
version = "4.11.0";
version = "4.13.0";
pyproject = true;
src = fetchFromGitHub {
owner = "MarketSquare";
repo = "robotframework-tidy";
rev = version;
hash = "sha256-pWW7Ex184WgnPfqHg5qQjfE+9UPvCmE5pwkY8jrp9bI=";
hash = "sha256-MCx0J+uZ2LI0K1TrIwJbLVTUTJnLxTvYXUJNtIMsnQU=";
};
build-system = with python3.pkgs; [ setuptools ];

View File

@ -1,17 +1,18 @@
{ lib
, buildPythonPackage
, click
, fetchFromGitHub
, pythonOlder
, rich
, setuptools
, typer
, typing-extensions
{
lib,
buildPythonPackage,
click,
fetchFromGitHub,
pythonOlder,
rich,
setuptools,
typer,
typing-extensions,
}:
buildPythonPackage rec {
pname = "rich-click";
version = "1.7.4";
version = "1.8.2";
pyproject = true;
disabled = pythonOlder "3.8";
@ -20,14 +21,12 @@ buildPythonPackage rec {
owner = "ewels";
repo = "rich-click";
rev = "refs/tags/v${version}";
hash = "sha256-eqpxNurMHn4ClD0KjTQ7Yfny61tcYBRKlW74axjLI8A=";
hash = "sha256-O7ZV6+p0nvWmKHUy/aK+qcED/KT4hZojoQRKr9Eg848=";
};
nativeBuildInputs = [
setuptools
];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
click
rich
typing-extensions
@ -36,16 +35,14 @@ buildPythonPackage rec {
# Module has no test
doCheck = false;
pythonImportsCheck = [
"rich_click"
];
pythonImportsCheck = [ "rich_click" ];
meta = with lib; {
description = "Module to format click help output nicely with rich";
mainProgram = "rich-click";
homepage = "https://github.com/ewels/rich-click";
changelog = "https://github.com/ewels/rich-click/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "rich-click";
};
}