rich-cli: 1.7.0 -> 1.8.0

main
Joel 2 years ago
parent 6fa9cc41ef
commit 194f81efa1
No known key found for this signature in database
GPG Key ID: 18550BD205E9EF64
  1. 13
      pkgs/misc/rich-cli/default.nix

@ -1,15 +1,18 @@
{ lib { lib
, fetchFromGitHub
, python3 , python3
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "rich-cli"; pname = "rich-cli";
version = "1.7.0"; version = "1.8.0";
format = "pyproject"; format = "pyproject";
src = python3.pkgs.fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "Textualize";
sha256 = "sha256-fporylec9H+9G2v8D0O32ek7OQs3YRSma1xOpakClqk="; repo = pname;
rev = "v${version}";
sha256 = "sha256-mV5b/J9wX9niiYtlmAUouaAm9mY2zTtDmex7FNWcezQ=";
}; };
nativeBuildInputs = with python3.pkgs; [ nativeBuildInputs = with python3.pkgs; [
@ -26,7 +29,7 @@ python3.pkgs.buildPythonApplication rec {
postPatch = '' postPatch = ''
substituteInPlace pyproject.toml \ substituteInPlace pyproject.toml \
--replace 'rich = "^12.3.0"' 'rich = "*"' --replace 'rich = "^12.4.0"' 'rich = "*"'
''; '';
pythonImportsCheck = [ pythonImportsCheck = [

Loading…
Cancel
Save