1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "sarge";
5 version = "0.1.6";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "f48fb904e64f10ad6bef62422eaf4736acfd9b13ab64ba44822637a9dbb53265";
10 };
11
12 # No tests in PyPI tarball
13 doCheck = false;
14
15 meta = with lib; {
16 homepage = "https://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}