summary refs log tree commit diff
path: root/pkgs/development/python-modules/sarge/default.nix
blob: bbdc4d90b288487d9cf632b239b63b04c2df4a77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "sarge";
  version = "0.1.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "08s8896973bz1gg0pkr592w6g4p6v47bkfvws5i91p9xf8b35yar";
  };

  meta = with lib; {
    homepage = http://sarge.readthedocs.org/;
    description = "A wrapper for subprocess which provides command pipeline functionality";
    license = licenses.bsd3;
    maintainers = with maintainers; [ abbradar ];
  };
}