Commit f87a5d4c authored by Bruno BELANYI's avatar Bruno BELANYI
Browse files

tandoor-recipes: remove python overrides

The rest of the packages seem to have caught up with our needs.
parent 8b68ef0d
Loading
Loading
Loading
Loading
+1 −22
Original line number Diff line number Diff line
@@ -5,28 +5,7 @@
, fetchpatch
}:
let
  python = python3.override {
    packageOverrides = self: super: {
      django = super.django_4;

      django-crispy-forms = super.django-crispy-forms.overridePythonAttrs (_: rec {
        version = "1.14.0";
        format = "setuptools";

        src = fetchFromGitHub {
          owner = "django-crispy-forms";
          repo = "django-crispy-forms";
          rev = "refs/tags/${version}";
          hash = "sha256-NZ2lWxsQHc7Qc4HDoWgjJTZ/bJHmjpBf3q1LVLtzA+8=";
        };
      });

      # Tests are incompatible with Django 4
      django-js-reverse = super.django-js-reverse.overridePythonAttrs (_: {
        doCheck = false;
      });
    };
  };
  python = python3;

  common = callPackage ./common.nix { };