depot/third_party/nixpkgs/pkgs/development/python-modules/pycron/default.nix

48 lines
854 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
arrow,
delorean,
pendulum,
pynose,
pytestCheckHook,
pytz,
udatetime,
}:
buildPythonPackage rec {
pname = "pycron";
version = "3.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "kipe";
repo = "pycron";
rev = version;
hash = "sha256-+67yU2o31SdgnV3CtiEkLHDltQYgosnqxEuO51rGE4o=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
arrow
delorean
pendulum
pynose
pytestCheckHook
pytz
udatetime
];
pythonImportsCheck = [ "pycron" ];
meta = with lib; {
description = "Simple cron-like parser for Python, which determines if current datetime matches conditions";
license = licenses.mit;
homepage = "https://github.com/kipe/pycron";
maintainers = with maintainers; [ globin ];
};
}