python3Packages.django-crontab: drop

This commit is contained in:
Sigmanificient 2024-08-21 04:45:20 +02:00
parent 54e4c5bf9d
commit 4883542572
3 changed files with 1 additions and 55 deletions

View File

@ -1,53 +0,0 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
django,
setuptools,
pytestCheckHook,
pytest-django,
mock,
nose,
}:
buildPythonPackage rec {
pname = "django-crontab";
version = "0.7.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "kraiz";
repo = "django-crontab";
rev = "refs/tags/${version}";
hash = "sha256-qX+N3SMUyhMWoWluRCeOPGYKCMBnjg61P281HXHkfJk=";
};
propagatedBuildInputs = [
django
setuptools
];
nativeCheckInputs = [
django
mock
nose
pytestCheckHook
pytest-django
];
# Tests currently fail with: RuntimeError: setup_test_environment() was
# already called and can't be called again without first calling
# teardown_test_environment()
doCheck = false;
DJANGO_SETTINGS_MODULE = "tests.settings";
pythonImportsCheck = [ "django_crontab" ];
meta = with lib; {
description = "Simple crontab powered job scheduling for Django";
homepage = "https://github.com/kraiz/django-crontab";
license = licenses.mit;
maintainers = with maintainers; [ onny ];
};
}

View File

@ -138,6 +138,7 @@ mapAliases ({
django_compat = django-compat; # added 2023-07-25
django-compat = throw "django-compat has been removed. It provided forward/backport compat for django 1.x, which is long end of life."; # added 2023-07-26
django_contrib_comments = django-contrib-comments; # added 2023-07-25
django-crontab = throw "django-crontabe has been removed beacause it is unmaintained since 2018"; # added 2024-08-21
django-discover-runner = throw "django-discover-runner was removed because it is no longer maintained."; # added 2022-11-21
django_environ = django-environ; # added 2021-12-25
django_extensions = django-extensions; # added 2022-01-09

View File

@ -3307,8 +3307,6 @@ self: super: with self; {
django-crispy-forms = callPackage ../development/python-modules/django-crispy-forms { };
django-crontab = callPackage ../development/python-modules/django-crontab { };
django-cryptography = callPackage ../development/python-modules/django-cryptography { };
django-csp = callPackage ../development/python-modules/django-csp { };