diff options
| author | kfollesdal <kristoffer.follesdal@bkk.no> | 2020-11-16 14:43:45 +0100 |
|---|---|---|
| committer | kfollesdal <kristoffer.follesdal@bkk.no> | 2020-11-21 10:36:51 +0100 |
| commit | ef90af465a341c63fdf0cebe816f182597375ea3 (patch) | |
| tree | bf9b6290bb434344b4c3302df2bfe598687d25dd /pkgs/development/python-modules/python-crontab | |
| parent | bb8b9f4ce1acaa81375ea974ed57376390227762 (diff) | |
pythonPackage.python-crontab: init at 2.5.1
Diffstat (limited to 'pkgs/development/python-modules/python-crontab')
| -rw-r--r-- | pkgs/development/python-modules/python-crontab/default.nix | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-crontab/default.nix b/pkgs/development/python-modules/python-crontab/default.nix new file mode 100644 index 000000000000..f5e368de0372 --- /dev/null +++ b/pkgs/development/python-modules/python-crontab/default.nix @@ -0,0 +1,27 @@ +{ lib, buildPythonPackage, fetchPypi, python-dateutil, pytestCheckHook }: + +buildPythonPackage rec { + pname = "python-crontab"; + version = "2.5.1"; + + src = fetchPypi { + inherit pname version; + sha256 = "4bbe7e720753a132ca4ca9d4094915f40e9d9dc8a807a4564007651018ce8c31"; + }; + + checkInputs = [ pytestCheckHook ]; + disabledTests = [ "test_07_non_posix_shell"]; + + propagatedBuildInputs = [ python-dateutil ]; + + meta = with lib; { + description = "Python API for crontab"; + longDescription = '' + Crontab module for reading and writing crontab files + and accessing the system cron automatically and simply using a direct API. + ''; + homepage = "https://pypi.org/project/python-crontab/"; + license = licenses.lgpl3Plus; + maintainers = with maintainers; [ kfollesdal ]; + }; +} |
