depot/third_party/nixpkgs/pkgs/development/python-modules/croniter/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

46 lines
878 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pytestCheckHook,
python-dateutil,
pythonOlder,
pytz,
tzlocal,
}:
buildPythonPackage rec {
pname = "croniter";
version = "3.0.3";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-NBF+wXQfEKe9DsOtfY8OuPpFei/rm+MuaiJQ4ViVdmg=";
};
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 = [ ];
};
}