Commit 84ec2a53 authored by c01o's avatar c01o
Browse files

archivebox: fix build issue on dependency

django 3.1 or below is no longer supported in django-extensions 3.2 or later.
parent e74e6844
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
{ lib
, python3
, fetchFromGitHub
, fetchPypi
}:

@@ -24,6 +25,16 @@ let
          ];
        };
      });
      django-extensions = super.django-extensions.overridePythonAttrs (old: rec {
        version = "3.1.5";
        src = fetchFromGitHub {
          inherit version;
          owner = "django-extensions";
          repo = "django-extensions";
          rev = "e43f383dae3a35237e42f6acfe1207a8e7e7bdf5";
          hash = "sha256-NAMa78KhAuoJfp0Cb0Codz84sRfRQ1JhSLNYRI4GBPM=";
        };
      });
    };
  };
in