nixpkgs/pkgs/by-name/gr/grin/package.nix

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

31 lines
719 B
Nix
Raw Normal View History

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 {
pname = "grin";
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
src = fetchFromGitHub {
owner = "matthew-brett";
2024-07-28 15:31:53 +01:00
repo = "grin";
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 ];
nativeCheckInputs = [ python3Packages.pytestCheckHook ];
2015-03-08 16:29:41 +00:00
meta = {
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
};
}