mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 08:33:54 +00:00
0215034f25
when they already rely on SRI hashes.
29 lines
569 B
Nix
29 lines
569 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, zconfig
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zdaemon";
|
|
version = "4.4";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "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 ];
|
|
};
|
|
|
|
}
|