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

22 lines
627 B
Nix
Raw Normal View History

2015-03-08 16:29:41 +00:00
{ 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;
2015-04-28 08:54:58 +00:00
description = "A grep program configured the way I like it";
platform = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.sjagoe ];
2015-03-08 16:29:41 +00:00
};
}