mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #204513 from r-ryantm/auto-update/python3.10-zdaemon
python310Packages.zdaemon: 4.3 -> 4.4
This commit is contained in:
commit
612454114f
1 changed files with 14 additions and 4 deletions
|
@ -1,28 +1,38 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, zconfig
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zdaemon";
|
||||
version = "4.3";
|
||||
version = "4.4";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "f249fc6885646d165d7d6b228a7b71f5170fc7117de9e0688271f8fb97840f72";
|
||||
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…
Reference in a new issue