rexi: init at 1.2.0 (#398469)

This commit is contained in:
Pol Dellaiera
2025-04-28 07:26:51 +00:00
committed by GitHub
2 changed files with 53 additions and 0 deletions
+6
View File
@@ -8664,6 +8664,12 @@
githubId = 4065244;
name = "Gary Guo";
};
gauravghodinde = {
email = "gauravghodinde@gmail.com";
github = "gauravghodinde";
githubId = 65962770;
name = "Gaurav Ghodinde";
};
gavin = {
email = "gavin.rogers@holo.host";
github = "gavinrogers";
+47
View 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";
};
}