2023-05-25 18:37:59 +00:00
|
|
|
{ lib, python3, fetchPypi }:
|
2018-02-22 16:29:54 +00:00
|
|
|
|
2021-03-25 10:28:16 +00:00
|
|
|
with python3.pkgs;
|
2018-02-22 16:29:54 +00:00
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "chkcrontab";
|
|
|
|
version = "1.7";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0gmxavjkjkvjysgf9cf5fcpk589gb75n1mn20iki82wifi1pk1jn";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-02-22 16:29:54 +00:00
|
|
|
description = "Tool to detect crontab errors";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "chkcrontab";
|
2018-02-22 16:29:54 +00:00
|
|
|
license = licenses.asl20;
|
2024-07-28 14:44:11 +00:00
|
|
|
maintainers = [ ];
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/lyda/chkcrontab";
|
2018-02-22 16:29:54 +00:00
|
|
|
};
|
|
|
|
}
|