python3Packages.zdaemon: update min python version and license

This commit is contained in:
Nick Cao 2023-06-23 16:53:33 +08:00
parent 30c89915e3
commit a8d60fba0f
No known key found for this signature in database

View file

@ -10,7 +10,7 @@ buildPythonPackage rec {
version = "5.0"; version = "5.0";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
@ -32,7 +32,7 @@ buildPythonPackage rec {
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"; changelog = "https://github.com/zopefoundation/zdaemon/blob/${version}/CHANGES.rst";
license = licenses.zpl20; license = licenses.zpl21;
maintainers = with maintainers; [ goibhniu ]; maintainers = with maintainers; [ goibhniu ];
}; };
} }