2021-03-25 10:28:16 +00:00
|
|
|
{ python3, lib }:
|
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 = "A tool to detect crontab errors";
|
|
|
|
license = licenses.asl20;
|
2021-01-01 13:39:41 +00:00
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/lyda/chkcrontab";
|
2018-02-22 16:29:54 +00:00
|
|
|
};
|
|
|
|
}
|