nixpkgs/pkgs/development/python-modules/sarge/default.nix

22 lines
542 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "sarge";
2018-07-22 12:20:16 +02:00
version = "0.1.5.post0";
src = fetchPypi {
inherit pname version;
2018-07-22 12:20:16 +02:00
sha256 = "da8cc90883f8e5ab4af0d746438f608662f5f2a35da2e858517927edefa134b0";
};
2018-08-30 18:33:11 +02:00
# No tests in PyPI tarball
doCheck = false;
meta = with lib; {
homepage = https://sarge.readthedocs.org/;
description = "A wrapper for subprocess which provides command pipeline functionality";
license = licenses.bsd3;
maintainers = with maintainers; [ abbradar ];
};
}