Merge pull request #6717 from sjagoe/package-python-grin
Add grin package
This commit is contained in:
commit
17a44e5013
@ -170,6 +170,7 @@
|
|||||||
shell = "Shell Turner <cam.turn@gmail.com>";
|
shell = "Shell Turner <cam.turn@gmail.com>";
|
||||||
shlevy = "Shea Levy <shea@shealevy.com>";
|
shlevy = "Shea Levy <shea@shealevy.com>";
|
||||||
simons = "Peter Simons <simons@cryp.to>";
|
simons = "Peter Simons <simons@cryp.to>";
|
||||||
|
sjagoe = "Simon Jagoe <simon@simonjagoe.com>";
|
||||||
sjmackenzie = "Stewart Mackenzie <setori88@gmail.com>";
|
sjmackenzie = "Stewart Mackenzie <setori88@gmail.com>";
|
||||||
skeidel = "Sven Keidel <svenkeidel@gmail.com>";
|
skeidel = "Sven Keidel <svenkeidel@gmail.com>";
|
||||||
smironov = "Sergey Mironov <ierton@gmail.com>";
|
smironov = "Sergey Mironov <ierton@gmail.com>";
|
||||||
|
21
pkgs/tools/text/grin/default.nix
Normal file
21
pkgs/tools/text/grin/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, fetchurl, pythonPackages }:
|
||||||
|
|
||||||
|
pythonPackages.buildPythonPackage rec {
|
||||||
|
name = "grin-1.2.1";
|
||||||
|
namePrefix = "";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://pypi.python.org/packages/source/g/grin/${name}.tar.gz";
|
||||||
|
sha256 = "1swzwb17wibam8jszdv98h557hlx44pg6psv6rjz7i33qlxk0fdz";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = with pythonPackages; [ nose ];
|
||||||
|
propagatedBuildInputs = with pythonPackages; [ argparse ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://pypi.python.org/pypi/grin;
|
||||||
|
description = "A grep program configured the way I like it.";
|
||||||
|
platform = stdenv.lib.platforms.all;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.sjagoe ];
|
||||||
|
};
|
||||||
|
}
|
@ -1461,6 +1461,8 @@ let
|
|||||||
*/
|
*/
|
||||||
graphviz_2_32 = callPackage ../tools/graphics/graphviz/2.32.nix { };
|
graphviz_2_32 = callPackage ../tools/graphics/graphviz/2.32.nix { };
|
||||||
|
|
||||||
|
grin = callPackage ../tools/text/grin { };
|
||||||
|
|
||||||
grive = callPackage ../tools/filesystems/grive {
|
grive = callPackage ../tools/filesystems/grive {
|
||||||
json_c = json-c-0-11; # won't configure with 0.12; others are vulnerable
|
json_c = json-c-0-11; # won't configure with 0.12; others are vulnerable
|
||||||
};
|
};
|
||||||
|
@ -5073,7 +5073,6 @@ let
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
gyp = buildPythonPackage rec {
|
gyp = buildPythonPackage rec {
|
||||||
rev = "1977";
|
rev = "1977";
|
||||||
name = "gyp-r${rev}";
|
name = "gyp-r${rev}";
|
||||||
@ -13765,7 +13764,7 @@ let
|
|||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
html2text = buildPythonPackage rec {
|
html2text = buildPythonPackage rec {
|
||||||
name = "html2text-2014.12.29";
|
name = "html2text-2014.12.29";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user