Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, python3, fetchPypi }: 2 3with python3.pkgs; 4 5buildPythonApplication rec { 6 pname = "chkcrontab"; 7 version = "1.7"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "0gmxavjkjkvjysgf9cf5fcpk589gb75n1mn20iki82wifi1pk1jn"; 12 }; 13 14 meta = with lib; { 15 description = "A tool to detect crontab errors"; 16 license = licenses.asl20; 17 maintainers = with maintainers; [ ]; 18 homepage = "https://github.com/lyda/chkcrontab"; 19 }; 20}