Unverified Commit c2d9f8bb authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

python3Packages.django-cryptography: drop (#502176)

parents f9064fb5 2e167694
Loading
Loading
Loading
Loading
+0 −60
Original line number Diff line number Diff line
{
  buildPythonPackage,
  cryptography,
  django,
  django-appconf,
  fetchFromGitHub,
  lib,
  pytestCheckHook,
  pytest-django,
  setuptools,
}:

buildPythonPackage {
  pname = "django-cryptography";
  version = "1.1-unstable-2024-02-16";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "georgemarshall";
    repo = "django-cryptography";
    rev = "a5cde9beed707a14a2ef2f1f7f1fee172feb8b5e";
    hash = "sha256-Xj/fw8EapsYvVbZPRQ81yeE9QpIQ1TIuk+ASOCGh/Uc=";
  };

  postPatch = ''
    substituteInPlace setup.cfg \
      --replace-fail "packages = django_cryptography" "packages = find:"
  '';

  build-system = [ setuptools ];

  dependencies = [
    cryptography
    django
    django-appconf
  ];

  pythonImportsCheck = [ "django_cryptography" ];

  nativeCheckInputs = [
    pytest-django
    pytestCheckHook
  ];

  preCheck = ''
    export DJANGO_SETTINGS_MODULE=tests.settings
  '';

  disabledTests = [
    # self.assertEqual(len(errors), 1) - AssertionError: 0 != 1
    "test_field_checks"
  ];

  meta = {
    homepage = "https://github.com/georgemarshall/django-cryptography";
    description = "Set of primitives for performing cryptography in Django";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ centromere ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -150,6 +150,7 @@ mapAliases {
  django-crispy-bootstrap3 = crispy-bootstrap3; # added 2025-06-11
  django-crispy-bootstrap4 = crispy-bootstrap4; # added 2025-06-11
  django-crispy-bootstrap5 = crispy-bootstrap5; # added 2025-06-11
  django-cryptography = throw "'django-cryptography' has been removed as it was unmaintained upstream"; # Added 2026-03-22
  django-modelsearch = modelsearch; # added 2026-03-02
  django_3 = throw "Django 3 has reached it's EOL in 2024-04 and has therefore been removed."; # added 2025-01-25
  django_4 = throw "Django 4 has reached it's EOL in 2026-04 and has therefore been removed."; # added 2026-03-30
+0 −2
Original line number Diff line number Diff line
@@ -4140,8 +4140,6 @@ self: super: with self; {
  django-crossdomainmedia = callPackage ../development/python-modules/django-crossdomainmedia { };
  django-cryptography = callPackage ../development/python-modules/django-cryptography { };
  django-csp = callPackage ../development/python-modules/django-csp { };
  django-cte = callPackage ../development/python-modules/django-cte { };