archivebox: fix build issue on dependency

django 3.1 or below is no longer supported in django-extensions 3.2 or later.
This commit is contained in:
c01o 2023-05-22 06:36:06 +09:00
parent e74e68449c
commit 84ec2a53f4

View File

@ -1,5 +1,6 @@
{ 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