nixpkgs/pkgs/by-name/ch/chkcrontab/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
462 B
Nix
Raw Normal View History

2023-05-25 18:37:59 +00:00
{ lib, python3, fetchPypi }:
2021-03-25 10:28:16 +00:00
with python3.pkgs;
buildPythonApplication rec {
pname = "chkcrontab";
version = "1.7";
src = fetchPypi {
inherit pname version;
sha256 = "0gmxavjkjkvjysgf9cf5fcpk589gb75n1mn20iki82wifi1pk1jn";
};
meta = with lib; {
description = "Tool to detect crontab errors";
mainProgram = "chkcrontab";
license = licenses.asl20;
maintainers = [ ];
homepage = "https://github.com/lyda/chkcrontab";
};
}