Add grin package

This commit is contained in:
Simon Jagoe 2015-03-08 16:29:41 +00:00
parent 593e829d18
commit 02fdd38400
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ 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.";
};
}

View file

@ -4844,6 +4844,7 @@ let
};
};
grin = callPackage ../development/python-modules/grin { };
gyp = buildPythonPackage rec {
rev = "1977";