diff --git a/pkgs/development/python-modules/django-recurrence/default.nix b/pkgs/development/python-modules/django-recurrence/default.nix deleted file mode 100644 index 507f70aa6ac9..000000000000 --- a/pkgs/development/python-modules/django-recurrence/default.nix +++ /dev/null @@ -1,50 +0,0 @@ -{ - buildPythonPackage, - django, - fetchFromGitHub, - lib, - python-dateutil, - pytest-django, - pytestCheckHook, - pytest-cov, - pytest-sugar, - setuptools-scm, - pythonOlder, -}: -buildPythonPackage rec { - pname = "django-recurrence"; - version = "1.11.1"; - pyproject = true; - - src = fetchFromGitHub { - owner = "jazzband"; - repo = "django-recurrence"; - tag = version; - hash = "sha256-Ytf4fFTVFIQ+6IBhwRMtCkonP0POivv4TrYok37nghA="; - }; - - disabled = pythonOlder "3.7"; - - dependencies = [ - django - python-dateutil - ]; - - build-system = [ setuptools-scm ]; - doCheck = true; - pythonImportsCheck = [ "recurrence" ]; - nativeCheckInputs = [ - pytest-django - pytest-cov - pytest-sugar - pytestCheckHook - ]; - - meta = with lib; { - description = "Utility for working with recurring dates in Django."; - homepage = "https://github.com/jazzband/django-recurrence"; - changelog = "https://github.com/jazzband/django-recurrence/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ kurogeek ]; - }; -} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 92ae7c81f55a..b9797654ede5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4334,8 +4334,6 @@ self: super: with self; { django-ratelimit = callPackage ../development/python-modules/django-ratelimit { }; - django-recurrence = callPackage ../development/python-modules/django-recurrence { }; - django-redis = callPackage ../development/python-modules/django-redis { }; django-registration = callPackage ../development/python-modules/django-registration { };