2024-07-28 15:31:53 +01:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
fetchFromGitHub,
|
|
|
|
python3Packages,
|
|
|
|
}:
|
2015-03-08 16:29:41 +00:00
|
|
|
|
2024-07-28 15:31:53 +01:00
|
|
|
python3Packages.buildPythonApplication {
|
2021-11-29 18:24:13 +00:00
|
|
|
pname = "grin";
|
2024-07-28 15:31:53 +01:00
|
|
|
version = "1.3.0-unstable-2023-08-30";
|
2015-03-08 16:29:41 +00:00
|
|
|
namePrefix = "";
|
2024-07-28 15:31:53 +01:00
|
|
|
pyproject = true;
|
2015-03-08 16:29:41 +00:00
|
|
|
|
2017-06-07 12:22:52 +01:00
|
|
|
src = fetchFromGitHub {
|
2021-12-05 22:43:54 +00:00
|
|
|
owner = "matthew-brett";
|
2024-07-28 15:31:53 +01:00
|
|
|
repo = "grin";
|
2024-07-28 15:31:53 +01:00
|
|
|
rev = "00e11ebf17bbb37dc33d282eac1282c0bcc07e82";
|
|
|
|
hash = "sha256-0lrCOXFb2v0hCxWd9O7ysbn8CjPd8NHOJhARYzJJcYg=";
|
2015-03-08 16:29:41 +00:00
|
|
|
};
|
|
|
|
|
2024-07-28 15:31:53 +01:00
|
|
|
build-system = [ python3Packages.setuptools ];
|
|
|
|
|
2024-07-28 15:31:53 +01:00
|
|
|
nativeCheckInputs = [ python3Packages.pytestCheckHook ];
|
2015-03-08 16:29:41 +00:00
|
|
|
|
|
|
|
meta = {
|
2021-12-05 22:43:54 +00:00
|
|
|
homepage = "https://github.com/matthew-brett/grin";
|
2015-04-28 09:54:58 +01:00
|
|
|
description = "Grep program configured the way I like it";
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = lib.platforms.all;
|
|
|
|
maintainers = [ lib.maintainers.sjagoe ];
|
2015-03-08 16:29:41 +00:00
|
|
|
};
|
|
|
|
}
|