nixpkgs/pkgs/development/python-modules/python-crontab/default.nix
Robert Scott 42133e8451 python3Packages.python-crontab: skip test test_03_usage
to my knowledge this test only fails on darwin, but assuming /tmp
is writable is a Bad Thing anyway so skipping on all platforms.
don't think it covers anything not otherwise covered.
2021-11-20 19:05:24 -05:00

32 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 ];
};
}