Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / sarge / default.nix
blob1d46e65d3490975379b496ba9395556f7b858022
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "sarge";
5   version = "0.1.6";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "f48fb904e64f10ad6bef62422eaf4736acfd9b13ab64ba44822637a9dbb53265";
10   };
12   # No tests in PyPI tarball
13   doCheck = false;
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   };