Merge pull request #172085 from SuperSandro2000/update/rich

python3Packages.rich: 12.3.0 -> 12.4.1
This commit is contained in:
Sandro 2022-05-09 00:32:55 +02:00 committed by GitHub
commit 6bcb0aa8f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 7 deletions

View File

@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "rich";
version = "12.3.0";
version = "12.4.1";
format = "pyproject";
disabled = pythonOlder "3.6";
@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "Textualize";
repo = pname;
rev = "v${version}";
sha256 = "sha256-/BPJcFjUldbTa/M3i9jGGU7apbrTcWbF+yrrFuLXcHY=";
sha256 = "sha256-6fr5mtZwXdZihoHEjF1jJxOLH3ajPX1tF2N/ZCV9g50=";
};
nativeBuildInputs = [ poetry-core ];

View File

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