2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
2018-04-03 13:20:06 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2023-02-19 16:40:18 +00:00
|
|
|
pname = "easyprocess";
|
2022-03-02 21:41:57 +00:00
|
|
|
version = "1.1";
|
2023-12-07 03:53:02 +00:00
|
|
|
format = "setuptools";
|
2018-04-03 13:20:06 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
2023-02-19 16:40:18 +00:00
|
|
|
pname = "EasyProcess";
|
|
|
|
inherit version;
|
2023-03-03 00:48:06 +00:00
|
|
|
hash = "sha256-iFiYMCpXqrlIlz6LXTKkIpOSufstmGqx1P/VkOW6kOw=";
|
2018-04-03 13:20:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# No tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-04-03 13:20:06 +00:00
|
|
|
description = "Easy to use python subprocess interface";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/ponty/EasyProcess";
|
2018-04-03 13:20:06 +00:00
|
|
|
license = licenses.bsdOriginal;
|
|
|
|
maintainers = with maintainers; [ layus ];
|
|
|
|
};
|
|
|
|
}
|