mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-12 05:16:25 +03:00
Merge pull request #279851 from fabaff/rich-click-bump
python311Packages.rich-click: 1.7.2 -> 1.7.3
This commit is contained in:
commit
2dbd0e60ce
1 changed files with 9 additions and 4 deletions
|
@ -4,24 +4,29 @@
|
|||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
, rich
|
||||
, setuptools
|
||||
, typer
|
||||
, typing-extensions
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "rich-click";
|
||||
version = "1.7.2";
|
||||
format = "setuptools";
|
||||
version = "1.7.3";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ewels";
|
||||
repo = pname;
|
||||
repo = "rich-click";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-uPEPYQIoLdjUJZlcg/0jenzIz464nwGi5KfOOyIQ/3I=";
|
||||
hash = "sha256-ZTUJbW39SBaqgVG+ytmnPG6DK7J2XGPwmC2w3TCodBo=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
click
|
||||
rich
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue