at v192 21 lines 627 B view raw
1{ stdenv, fetchurl, pythonPackages }: 2 3pythonPackages.buildPythonPackage rec { 4 name = "grin-1.2.1"; 5 namePrefix = ""; 6 7 src = fetchurl { 8 url = "https://pypi.python.org/packages/source/g/grin/${name}.tar.gz"; 9 sha256 = "1swzwb17wibam8jszdv98h557hlx44pg6psv6rjz7i33qlxk0fdz"; 10 }; 11 12 buildInputs = with pythonPackages; [ nose ]; 13 propagatedBuildInputs = with pythonPackages; [ argparse ]; 14 15 meta = { 16 homepage = https://pypi.python.org/pypi/grin; 17 description = "A grep program configured the way I like it"; 18 platform = stdenv.lib.platforms.all; 19 maintainers = [ stdenv.lib.maintainers.sjagoe ]; 20 }; 21}