python3Packages.django-apscheduler: init at 0.7.0 (#358890)
This commit is contained in:
commit
5945901935
@ -0,0 +1,54 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
wheel,
|
||||
# dependencies
|
||||
django_5,
|
||||
apscheduler,
|
||||
# tests
|
||||
pytestCheckHook,
|
||||
pytest-django,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "django-apscheduler";
|
||||
version = "0.7.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jcass77";
|
||||
repo = "django-apscheduler";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-2YSVX4FxE1OfJkSYV9IRKd2scV4BrMA/mBzJARQCX38=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
wheel
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
django_5
|
||||
apscheduler
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
pytest-django
|
||||
];
|
||||
|
||||
env.DJANGO_SETTINGS_MODULE = "tests.settings";
|
||||
|
||||
pythonImportsCheck = [
|
||||
"django_apscheduler"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "APScheduler for Django";
|
||||
homepage = "https://github.com/jcass77/django-apscheduler";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ happysalada ];
|
||||
};
|
||||
}
|
@ -3352,6 +3352,8 @@ self: super: with self; {
|
||||
|
||||
django-app-helper = callPackage ../development/python-modules/django-app-helper { };
|
||||
|
||||
django-apscheduler = callPackage ../development/python-modules/django-apscheduler { };
|
||||
|
||||
django-auditlog = callPackage ../development/python-modules/django-auditlog { };
|
||||
|
||||
django-auth-ldap = callPackage ../development/python-modules/django-auth-ldap { };
|
||||
|
Loading…
Reference in New Issue
Block a user