depot/third_party/nixpkgs/pkgs/development/python-modules/easyprocess/default.nix
Default email 4fc29cb41f Project import generated by Copybara.
GitOrigin-RevId: 135073a87b7e2c631739f4ffa016e1859b1a425e
2020-05-29 08:06:01 +02:00

21 lines
503 B
Nix

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "EasyProcess";
version = "0.3";
src = fetchPypi {
inherit pname version;
sha256 = "115rzzr0hx4af4m6krf7dxn8851n4l8jfxahjzjc2r0zq2m8v57v";
};
# No tests
doCheck = false;
meta = with stdenv.lib; {
description = "Easy to use python subprocess interface";
homepage = "https://github.com/ponty/EasyProcess";
license = licenses.bsdOriginal;
maintainers = with maintainers; [ layus ];
};
}