about summary refs log tree commit diff
path: root/pkgs/applications/misc/tandoor-recipes
diff options
context:
space:
mode:
authorBruno BELANYI <bruno@belanyi.fr>2023-12-06 22:08:52 +0000
committerBruno BELANYI <bruno@belanyi.fr>2023-12-06 22:08:54 +0000
commitf87a5d4c5e176c15a4d4708a10296aaf21b4d34f (patch)
tree691b3f63e526efd6e60de057ac40b98b75e59eb6 /pkgs/applications/misc/tandoor-recipes
parent8b68ef0d9df1bd69100cf86348bf7f86d67e9468 (diff)
tandoor-recipes: remove python overrides
The rest of the packages seem to have caught up with our needs.
Diffstat (limited to 'pkgs/applications/misc/tandoor-recipes')
-rw-r--r--pkgs/applications/misc/tandoor-recipes/default.nix23
1 files changed, 1 insertions, 22 deletions
diff --git a/pkgs/applications/misc/tandoor-recipes/default.nix b/pkgs/applications/misc/tandoor-recipes/default.nix
index f5ce961e401ac..ccb73411a1311 100644
--- a/pkgs/applications/misc/tandoor-recipes/default.nix
+++ b/pkgs/applications/misc/tandoor-recipes/default.nix
@@ -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 { };