mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 13:40:28 +03:00
python310Packages.zdaemon: add changelog to meta
This commit is contained in:
parent
d2f57c7a37
commit
5b5a1e8056
1 changed files with 13 additions and 3 deletions
|
@ -1,28 +1,38 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, zconfig
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zdaemon";
|
||||
version = "4.4";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-SCHjvbRzh88eklWwREusQ3z3KqC1nRQHuTLjH9QyPvw=";
|
||||
hash = "sha256-SCHjvbRzh88eklWwREusQ3z3KqC1nRQHuTLjH9QyPvw=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ zconfig ];
|
||||
propagatedBuildInputs = [
|
||||
zconfig
|
||||
];
|
||||
|
||||
# too many deps..
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"zdaemon"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A daemon process control library and tools for Unix-based systems";
|
||||
homepage = "https://pypi.python.org/pypi/zdaemon";
|
||||
changelog = "https://github.com/zopefoundation/zdaemon/blob/${version}/CHANGES.rst";
|
||||
license = licenses.zpl20;
|
||||
maintainers = with maintainers; [ goibhniu ];
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue