blob: 7d904d67f813d111236f20158e5e3ac4f613e232 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
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 = {
description = "Easy to use python subprocess interface";
homepage = "https://github.com/ponty/EasyProcess";
license = lib.licenses.bsdOriginal;
maintainers = with lib.maintainers; [ layus ];
};
}
|