python3Packages.cli-ui: 0.17.2 -> 0.18.0

This commit is contained in:
Martin Weinelt
2025-01-19 21:14:42 +01:00
parent b456023682
commit 0ddfc38cf6

View File

@@ -1,6 +1,6 @@
{
lib,
fetchPypi,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
poetry-core,
@@ -11,14 +11,16 @@
}:
buildPythonPackage rec {
pname = "cli-ui";
version = "0.17.2";
version = "0.18.0";
pyproject = true;
disabled = pythonOlder "3.8.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-L2flDPR052rRYMPmYLutmL+LjfuNhHdl86Jht+E8Bfo=";
src = fetchFromGitHub {
owner = "your-tools";
repo = "python-cli-ui";
tag = "v${version}";
hash = "sha256-kEML+V15bjSMoSf2NFc48A0ADsZ3nagllBpEXesMccc=";
};
pythonRelaxDeps = [ "tabulate" ];