1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "sarge";
5 version = "0.1.5.post0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "da8cc90883f8e5ab4af0d746438f608662f5f2a35da2e858517927edefa134b0";
10 };
11
12 # No tests in PyPI tarball
13 doCheck = false;
14
15 meta = with lib; {
16 homepage = http://sarge.readthedocs.org/;
17 description = "A wrapper for subprocess which provides command pipeline functionality";
18 license = licenses.bsd3;
19 maintainers = with maintainers; [ abbradar ];
20 };
21}