mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +03:00
rexi: init at 1.2.0
This commit is contained in:
parent
a909481f12
commit
7c11907fdf
1 changed files with 47 additions and 0 deletions
47
pkgs/by-name/re/rexi/package.nix
Normal file
47
pkgs/by-name/re/rexi/package.nix
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
python3Packages,
|
||||||
|
fetchFromGitHub,
|
||||||
|
}:
|
||||||
|
|
||||||
|
python3Packages.buildPythonApplication rec {
|
||||||
|
pname = "rexi";
|
||||||
|
version = "1.2.0";
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "royreznik";
|
||||||
|
repo = "rexi";
|
||||||
|
tag = "v${version}";
|
||||||
|
hash = "sha256-tag2/QTM6tDCU3qr4e1GqRYAZgpvEgtA+FtR4P7WdiU=";
|
||||||
|
};
|
||||||
|
|
||||||
|
build-system = with python3Packages; [
|
||||||
|
poetry-core
|
||||||
|
];
|
||||||
|
|
||||||
|
dependencies = with python3Packages; [
|
||||||
|
colorama
|
||||||
|
typer
|
||||||
|
textual
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeCheckInputs = with python3Packages; [
|
||||||
|
pytest
|
||||||
|
pytest-asyncio
|
||||||
|
pytest-cov
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonRelaxDeps = [
|
||||||
|
"textual"
|
||||||
|
"typer"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "User-friendly terminal UI to interactively work with regular expressions";
|
||||||
|
homepage = "https://github.com/royreznik/rexi";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = with lib.maintainers; [ gauravghodinde ];
|
||||||
|
mainProgram = "rexi";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue