nixpkgs/pkgs/tools/text/grin/default.nix

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

35 lines
923 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, fetchpatch, python3Packages }:
2015-03-08 16:29:41 +00:00
python3Packages.buildPythonApplication rec {
pname = "grin";
version = "1.3.0";
2015-03-08 16:29:41 +00:00
namePrefix = "";
src = fetchFromGitHub {
owner = "matthew-brett";
repo = pname;
rev = "1.3.0";
hash = "sha256-exKUy7LaDtpq0rJLSuNYsIcynpB4QLtLIE6T/ncB7RQ=";
2015-03-08 16:29:41 +00:00
};
patches = [
# https://github.com/matthew-brett/grin/pull/4
(fetchpatch {
name = "replace-nose-with-nose3.patch";
url = "https://github.com/matthew-brett/grin/commit/ba473fa4f5da1b337ee80d7d31772a4e41ffa62d.patch";
hash = "sha256-CnWHynKSsXYjSsTLdPuwpcIndrCdq3cQYS8teg5EM0A=";
})
];
nativeCheckInputs = with python3Packages; [
nose3
];
2015-03-08 16:29:41 +00:00
meta = {
homepage = "https://github.com/matthew-brett/grin";
2015-04-28 08:54:58 +00:00
description = "A 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
};
}