9 buildPythonPackage rec {
10 pname = "cron_descriptor";
13 src = fetchFromGitHub {
15 repo = "cron-descriptor";
16 rev = "refs/tags/${version}";
17 hash = "sha256-r5TMatjNYaPhPxhJbBGGshQf6VxKyBV6Za1lQoblxYA=";
20 # remove tests_require, as we don't do linting anyways
22 sed -i "/'pep8\|flake8\|pep8-naming',/d" setup.py
30 ${python.interpreter} setup.py test
33 pythonImportsCheck = [ "cron_descriptor" ];
36 description = "Library that converts cron expressions into human readable strings";
37 homepage = "https://github.com/Salamek/cron-descriptor";
38 license = licenses.mit;
39 maintainers = with maintainers; [ phaer ];