0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
28 lines
571 B
Nix
28 lines
571 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, zconfig
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zdaemon";
|
|
version = "4.4";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-SCHjvbRzh88eklWwREusQ3z3KqC1nRQHuTLjH9QyPvw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ zconfig ];
|
|
|
|
# too many deps..
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "A daemon process control library and tools for Unix-based systems";
|
|
homepage = "https://pypi.python.org/pypi/zdaemon";
|
|
license = licenses.zpl20;
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
};
|
|
|
|
}
|