10 buildPythonPackage rec {
11 pname = "cron-descriptor";
15 src = fetchFromGitHub {
17 repo = "cron-descriptor";
18 rev = "refs/tags/${version}";
19 hash = "sha256-ElYma6RH2u1faIgOvGpMQA26dSIibWcO4mWU6NAA5PQ=";
22 # remove tests_require, as we don't do linting anyways
24 sed -i "/'pep8\|flake8\|pep8-naming',/d" setup.py
27 build-system = [ setuptools ];
34 pythonImportsCheck = [ "cron_descriptor" ];
37 description = "Library that converts cron expressions into human readable strings";
38 homepage = "https://github.com/Salamek/cron-descriptor";
39 changelog = "https://github.com/Salamek/cron-descriptor/releases/tag/${version}";
40 license = licenses.mit;
41 maintainers = with maintainers; [ phaer ];