at 18.09-beta 20 lines 450 B view raw
1{ python, stdenv }: 2 3with python.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 stdenv.lib; { 15 description = "A tool to detect crontab errors"; 16 license = licenses.asl20; 17 maintainers = with maintainers; [ ma27 ]; 18 homepage = https://github.com/lyda/chkcrontab; 19 }; 20}