depot/third_party/nixpkgs/pkgs/development/python-modules/python-crontab/default.nix
Default email ce641f4048 Project import generated by Copybara.
GitOrigin-RevId: bc5d68306b40b8522ffb69ba6cff91898c2fbbff
2021-12-06 17:07:01 +01:00

31 lines
898 B
Nix

{ lib, buildPythonPackage, fetchPypi, python-dateutil, pytestCheckHook }:
buildPythonPackage rec {
pname = "python-crontab";
version = "2.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "1e35ed7a3cdc3100545b43e196d34754e6551e7f95e4caebbe0e1c0ca41c2f1b";
};
checkInputs = [ pytestCheckHook ];
disabledTests = [
"test_07_non_posix_shell"
# doctest that assumes /tmp is writeable, awkward to patch
"test_03_usage"
];
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 ];
};
}