2024-09-19 14:19:46 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
fetchFromGitHub,
|
|
|
|
python3Packages,
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
python3Packages.buildPythonApplication {
|
2021-12-06 16:07:01 +00:00
|
|
|
pname = "grin";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "1.3.0-unstable-2023-08-30";
|
2020-04-24 23:36:52 +00:00
|
|
|
namePrefix = "";
|
2024-09-19 14:19:46 +00:00
|
|
|
pyproject = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-12-06 16:07:01 +00:00
|
|
|
owner = "matthew-brett";
|
2024-09-19 14:19:46 +00:00
|
|
|
repo = "grin";
|
|
|
|
rev = "00e11ebf17bbb37dc33d282eac1282c0bcc07e82";
|
|
|
|
hash = "sha256-0lrCOXFb2v0hCxWd9O7ysbn8CjPd8NHOJhARYzJJcYg=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
build-system = [ python3Packages.setuptools ];
|
2023-10-09 19:29:22 +00:00
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
nativeCheckInputs = [ python3Packages.pytestCheckHook ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = {
|
2021-12-06 16:07:01 +00:00
|
|
|
homepage = "https://github.com/matthew-brett/grin";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Grep program configured the way I like it";
|
2021-01-15 22:18:51 +00:00
|
|
|
platforms = lib.platforms.all;
|
|
|
|
maintainers = [ lib.maintainers.sjagoe ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|