2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
2018-04-03 14:20:06 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "EasyProcess";
|
2020-05-23 07:29:10 +01:00
|
|
|
version = "0.3";
|
2018-04-03 14:20:06 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-23 07:29:10 +01:00
|
|
|
sha256 = "115rzzr0hx4af4m6krf7dxn8851n4l8jfxahjzjc2r0zq2m8v57v";
|
2018-04-03 14:20:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# No tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-04-03 14:20:06 +01:00
|
|
|
description = "Easy to use python subprocess interface";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/ponty/EasyProcess";
|
2018-04-03 14:20:06 +01:00
|
|
|
license = licenses.bsdOriginal;
|
|
|
|
maintainers = with maintainers; [ layus ];
|
|
|
|
};
|
|
|
|
}
|