nixpkgs/pkgs/misc/rich-cli/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
1.8 KiB
Nix
Raw Normal View History

2022-05-04 14:23:18 +00:00
{ lib
2022-05-08 03:19:30 +00:00
, fetchFromGitHub
2022-05-04 14:23:18 +00:00
, python3
}:
2022-03-01 06:48:55 +00:00
2023-02-27 07:32:47 +00:00
let
2023-04-11 12:19:56 +00:00
py = python3.override {
packageOverrides = final: prev: {
rich = prev.rich.overridePythonAttrs (old: rec {
2023-02-27 07:32:47 +00:00
version = "12.4.0";
src = fetchFromGitHub {
owner = "Textualize";
repo = "rich";
2023-04-11 12:19:56 +00:00
rev = "refs/tags/v12.4.0";
2023-02-27 07:32:47 +00:00
hash = "sha256-ryJTusUNpvNF2031ICJWK8ScxHIh+LrXYg7nd0ph4aQ=";
};
2023-04-11 12:19:56 +00:00
propagatedBuildInputs = with py.pkgs; [
commonmark
pygments
];
doCheck = false;
2023-02-27 07:32:47 +00:00
});
2023-04-11 12:19:56 +00:00
textual = prev.textual.overridePythonAttrs (old: rec {
2023-02-27 07:32:47 +00:00
version = "0.1.18";
src = fetchFromGitHub {
owner = "Textualize";
repo = "textual";
2023-04-11 12:19:56 +00:00
rev = "refs/tags/v0.1.18";
2023-02-27 07:32:47 +00:00
hash = "sha256-XVmbt8r5HL8r64ISdJozmM+9HuyvqbpdejWICzFnfiw=";
};
2023-04-11 12:19:56 +00:00
doCheck = false;
2023-02-27 07:32:47 +00:00
});
};
};
in
2023-04-11 12:19:56 +00:00
python3.pkgs.buildPythonApplication rec {
2022-03-01 06:48:55 +00:00
pname = "rich-cli";
2022-05-08 03:19:30 +00:00
version = "1.8.0";
2022-05-04 14:23:18 +00:00
format = "pyproject";
2022-03-01 06:48:55 +00:00
2022-05-08 03:19:30 +00:00
src = fetchFromGitHub {
owner = "Textualize";
repo = pname;
2023-04-11 12:19:56 +00:00
rev = "refs/tags/v${version}";
hash = "sha256-mV5b/J9wX9niiYtlmAUouaAm9mY2zTtDmex7FNWcezQ=";
2022-03-01 06:48:55 +00:00
};
2023-04-11 12:19:56 +00:00
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'rich = "^12.4.0"' 'rich = "*"' \
--replace 'textual = "^0.1.18"' 'textual = "*"'
'';
nativeBuildInputs = with py.pkgs; [
2022-05-04 14:23:18 +00:00
poetry-core
];
2022-03-01 06:48:55 +00:00
2023-04-11 12:19:56 +00:00
propagatedBuildInputs = with py.pkgs; [
2022-03-01 06:48:55 +00:00
rich
click
requests
textual
rich-rst
];
2022-05-04 14:23:18 +00:00
pythonImportsCheck = [
"rich_cli"
];
2022-03-01 06:48:55 +00:00
meta = with lib; {
description = "Command Line Interface to Rich";
2022-05-04 14:23:18 +00:00
homepage = "https://github.com/Textualize/rich-cli";
2023-04-11 12:19:56 +00:00
changelog = "https://github.com/Textualize/rich-cli/releases/tag/v${version}";
2022-03-01 06:48:55 +00:00
license = licenses.mit;
2023-01-15 04:14:19 +00:00
maintainers = with maintainers; [ joelkoen ];
2022-03-01 06:48:55 +00:00
};
}