mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 17:17:31 +00:00
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:
parent
e74e68449c
commit
84ec2a53f4
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user