mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +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
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, pythonOlder
|
||||||
, zconfig
|
, zconfig
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "zdaemon";
|
pname = "zdaemon";
|
||||||
version = "4.4";
|
version = "4.4";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-SCHjvbRzh88eklWwREusQ3z3KqC1nRQHuTLjH9QyPvw=";
|
hash = "sha256-SCHjvbRzh88eklWwREusQ3z3KqC1nRQHuTLjH9QyPvw=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ zconfig ];
|
propagatedBuildInputs = [
|
||||||
|
zconfig
|
||||||
|
];
|
||||||
|
|
||||||
# too many deps..
|
# too many deps..
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"zdaemon"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A daemon process control library and tools for Unix-based systems";
|
description = "A daemon process control library and tools for Unix-based systems";
|
||||||
homepage = "https://pypi.python.org/pypi/zdaemon";
|
homepage = "https://pypi.python.org/pypi/zdaemon";
|
||||||
|
changelog = "https://github.com/zopefoundation/zdaemon/blob/${version}/CHANGES.rst";
|
||||||
license = licenses.zpl20;
|
license = licenses.zpl20;
|
||||||
maintainers = with maintainers; [ goibhniu ];
|
maintainers = with maintainers; [ goibhniu ];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue