2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-29 13:54:57 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, zconfig
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zdaemon";
|
2018-11-04 10:35:22 +00:00
|
|
|
version = "4.3";
|
2018-10-29 13:54:57 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-04 10:35:22 +00:00
|
|
|
sha256 = "f249fc6885646d165d7d6b228a7b71f5170fc7117de9e0688271f8fb97840f72";
|
2018-10-29 13:54:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ zconfig ];
|
|
|
|
|
|
|
|
# too many deps..
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-29 13:54:57 +00:00
|
|
|
description = "A daemon process control library and tools for Unix-based systems";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://pypi.python.org/pypi/zdaemon";
|
2018-10-29 13:54:57 +00:00
|
|
|
license = licenses.zpl20;
|
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|