https://github.com/zopefoundation/zdaemon/blob/5.2.1/CHANGES.rst This commit was automatically generated using update-python-libraries.
49 lines
995 B
Nix
49 lines
995 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
zconfig,
|
|
manuel,
|
|
unittestCheckHook,
|
|
zope-testing,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zdaemon";
|
|
version = "5.2.1";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-8GwsfK9RnHYINPj+JuVzWVDVAX9y1cII3IsZABQFlM0=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ zconfig ];
|
|
|
|
pythonImportsCheck = [ "zdaemon" ];
|
|
|
|
# require zc-customdoctests but it is not packaged
|
|
doCheck = false;
|
|
|
|
nativeCheckInputs = [
|
|
manuel
|
|
unittestCheckHook
|
|
# zc-customdoctests
|
|
zope-testing
|
|
];
|
|
|
|
unittestFlagsArray = [ "src/zdaemon/tests" ];
|
|
|
|
meta = {
|
|
description = "Daemon process control library and tools for Unix-based systems";
|
|
mainProgram = "zdaemon";
|
|
homepage = "https://github.com/zopefoundation/zdaemon";
|
|
changelog = "https://github.com/zopefoundation/zdaemon/blob/${version}/CHANGES.rst";
|
|
license = lib.licenses.zpl21;
|
|
maintainers = [ ];
|
|
};
|
|
}
|