2021-03-25 03:28:16 -07:00
|
|
|
{ python3, lib }:
|
2018-02-22 08:29:54 -08:00
|
|
|
|
2021-03-25 03:28:16 -07:00
|
|
|
with python3.pkgs;
|
2018-02-22 08:29:54 -08:00
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "chkcrontab";
|
|
|
|
version = "1.7";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0gmxavjkjkvjysgf9cf5fcpk589gb75n1mn20iki82wifi1pk1jn";
|
|
|
|
};
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-02-22 08:29:54 -08:00
|
|
|
description = "A tool to detect crontab errors";
|
|
|
|
license = licenses.asl20;
|
2021-01-01 05:39:41 -08:00
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/lyda/chkcrontab";
|
2018-02-22 08:29:54 -08:00
|
|
|
};
|
|
|
|
}
|