Loading pkgs/development/python-modules/rich/default.nix +3 −1 Original line number Diff line number Diff line Loading @@ -42,7 +42,9 @@ buildPythonPackage rec { pytestCheckHook ]; pythonImportsCheck = [ "rich" ]; pythonImportsCheck = [ "rich" ]; passthru.tests = { inherit enrich httpie rich-rst textual; Loading pkgs/misc/rich-cli/default.nix +25 −17 Original line number Diff line number Diff line Loading @@ -4,31 +4,38 @@ }: let python = python3.override { packageOverrides = self: super: { rich = super.rich.overrideAttrs (old: rec { py = python3.override { packageOverrides = final: prev: { rich = prev.rich.overridePythonAttrs (old: rec { version = "12.4.0"; src = fetchFromGitHub { owner = "Textualize"; repo = "rich"; rev = "refs/tags/v${version}"; rev = "refs/tags/v12.4.0"; hash = "sha256-ryJTusUNpvNF2031ICJWK8ScxHIh+LrXYg7nd0ph4aQ="; }; propagatedBuildInputs = with py.pkgs; [ commonmark pygments ]; doCheck = false; }); textual = super.textual.overrideAttrs (old: rec { textual = prev.textual.overridePythonAttrs (old: rec { version = "0.1.18"; src = fetchFromGitHub { owner = "Textualize"; repo = "textual"; rev = "refs/tags/v${version}"; rev = "refs/tags/v0.1.18"; hash = "sha256-XVmbt8r5HL8r64ISdJozmM+9HuyvqbpdejWICzFnfiw="; }; doCheck = false; }); }; }; in python.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec { pname = "rich-cli"; version = "1.8.0"; format = "pyproject"; Loading @@ -36,15 +43,21 @@ python.pkgs.buildPythonApplication rec { src = fetchFromGitHub { owner = "Textualize"; repo = pname; rev = "v${version}"; sha256 = "sha256-mV5b/J9wX9niiYtlmAUouaAm9mY2zTtDmex7FNWcezQ="; rev = "refs/tags/v${version}"; hash = "sha256-mV5b/J9wX9niiYtlmAUouaAm9mY2zTtDmex7FNWcezQ="; }; nativeBuildInputs = with python.pkgs; [ postPatch = '' substituteInPlace pyproject.toml \ --replace 'rich = "^12.4.0"' 'rich = "*"' \ --replace 'textual = "^0.1.18"' 'textual = "*"' ''; nativeBuildInputs = with py.pkgs; [ poetry-core ]; propagatedBuildInputs = with python.pkgs; [ propagatedBuildInputs = with py.pkgs; [ rich click requests Loading @@ -52,12 +65,6 @@ python.pkgs.buildPythonApplication rec { rich-rst ]; postPatch = '' substituteInPlace pyproject.toml \ --replace 'rich = "^12.4.0"' 'rich = "*"' \ --replace 'textual = "^0.1.18"' 'textual = "*"' ''; pythonImportsCheck = [ "rich_cli" ]; Loading @@ -65,6 +72,7 @@ python.pkgs.buildPythonApplication rec { meta = with lib; { description = "Command Line Interface to Rich"; homepage = "https://github.com/Textualize/rich-cli"; changelog = "https://github.com/Textualize/rich-cli/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ joelkoen ]; }; Loading Loading
pkgs/development/python-modules/rich/default.nix +3 −1 Original line number Diff line number Diff line Loading @@ -42,7 +42,9 @@ buildPythonPackage rec { pytestCheckHook ]; pythonImportsCheck = [ "rich" ]; pythonImportsCheck = [ "rich" ]; passthru.tests = { inherit enrich httpie rich-rst textual; Loading
pkgs/misc/rich-cli/default.nix +25 −17 Original line number Diff line number Diff line Loading @@ -4,31 +4,38 @@ }: let python = python3.override { packageOverrides = self: super: { rich = super.rich.overrideAttrs (old: rec { py = python3.override { packageOverrides = final: prev: { rich = prev.rich.overridePythonAttrs (old: rec { version = "12.4.0"; src = fetchFromGitHub { owner = "Textualize"; repo = "rich"; rev = "refs/tags/v${version}"; rev = "refs/tags/v12.4.0"; hash = "sha256-ryJTusUNpvNF2031ICJWK8ScxHIh+LrXYg7nd0ph4aQ="; }; propagatedBuildInputs = with py.pkgs; [ commonmark pygments ]; doCheck = false; }); textual = super.textual.overrideAttrs (old: rec { textual = prev.textual.overridePythonAttrs (old: rec { version = "0.1.18"; src = fetchFromGitHub { owner = "Textualize"; repo = "textual"; rev = "refs/tags/v${version}"; rev = "refs/tags/v0.1.18"; hash = "sha256-XVmbt8r5HL8r64ISdJozmM+9HuyvqbpdejWICzFnfiw="; }; doCheck = false; }); }; }; in python.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec { pname = "rich-cli"; version = "1.8.0"; format = "pyproject"; Loading @@ -36,15 +43,21 @@ python.pkgs.buildPythonApplication rec { src = fetchFromGitHub { owner = "Textualize"; repo = pname; rev = "v${version}"; sha256 = "sha256-mV5b/J9wX9niiYtlmAUouaAm9mY2zTtDmex7FNWcezQ="; rev = "refs/tags/v${version}"; hash = "sha256-mV5b/J9wX9niiYtlmAUouaAm9mY2zTtDmex7FNWcezQ="; }; nativeBuildInputs = with python.pkgs; [ postPatch = '' substituteInPlace pyproject.toml \ --replace 'rich = "^12.4.0"' 'rich = "*"' \ --replace 'textual = "^0.1.18"' 'textual = "*"' ''; nativeBuildInputs = with py.pkgs; [ poetry-core ]; propagatedBuildInputs = with python.pkgs; [ propagatedBuildInputs = with py.pkgs; [ rich click requests Loading @@ -52,12 +65,6 @@ python.pkgs.buildPythonApplication rec { rich-rst ]; postPatch = '' substituteInPlace pyproject.toml \ --replace 'rich = "^12.4.0"' 'rich = "*"' \ --replace 'textual = "^0.1.18"' 'textual = "*"' ''; pythonImportsCheck = [ "rich_cli" ]; Loading @@ -65,6 +72,7 @@ python.pkgs.buildPythonApplication rec { meta = with lib; { description = "Command Line Interface to Rich"; homepage = "https://github.com/Textualize/rich-cli"; changelog = "https://github.com/Textualize/rich-cli/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ joelkoen ]; }; Loading