Files
nixpkgs/pkgs/development/python-modules/croniter/default.nix
T
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

47 lines
878 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pytestCheckHook,
python-dateutil,
pythonOlder,
pytz,
tzlocal,
}:
buildPythonPackage rec {
pname = "croniter";
version = "2.0.7";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-EEG5ErSx4DdRoJk1Mb7Pd4Ua5uizNMnHb/7/uPBV9T8=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
python-dateutil
pytz
];
nativeCheckInputs = [
pytestCheckHook
tzlocal
];
pythonImportsCheck = [ "croniter" ];
meta = with lib; {
description = "Library to iterate over datetime object with cron like format";
homepage = "https://github.com/kiorky/croniter";
changelog = "https://github.com/kiorky/croniter/blob/${version}/CHANGELOG.rst";
license = licenses.mit;
maintainers = [ ];
};
}