fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
27 lines
543 B
Nix
27 lines
543 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "easyprocess";
|
|
version = "1.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
pname = "EasyProcess";
|
|
inherit version;
|
|
hash = "sha256-iFiYMCpXqrlIlz6LXTKkIpOSufstmGqx1P/VkOW6kOw=";
|
|
};
|
|
|
|
# No tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Easy to use python subprocess interface";
|
|
homepage = "https://github.com/ponty/EasyProcess";
|
|
license = licenses.bsdOriginal;
|
|
maintainers = with maintainers; [ layus ];
|
|
};
|
|
}
|