Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 26 lines 494 B view raw
1{ 2 lib, 3 python3, 4 fetchPypi, 5}: 6 7with python3.pkgs; 8 9buildPythonApplication rec { 10 pname = "chkcrontab"; 11 version = "1.7"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "0gmxavjkjkvjysgf9cf5fcpk589gb75n1mn20iki82wifi1pk1jn"; 17 }; 18 19 meta = with lib; { 20 description = "Tool to detect crontab errors"; 21 mainProgram = "chkcrontab"; 22 license = licenses.asl20; 23 maintainers = [ ]; 24 homepage = "https://github.com/lyda/chkcrontab"; 25 }; 26}