Merge pull request #233309 from c01o/fix-archivebox-dependency

authored by Janik and committed by GitHub 7f256d7d dfcc2580

+11
+11
pkgs/applications/misc/archivebox/default.nix
··· 1 { lib 2 , python3 3 , fetchPypi 4 }: 5 ··· 22 "CVE-2022-28347" 23 "CVE-2022-28346" 24 ]; 25 }; 26 }); 27 };
··· 1 { lib 2 , python3 3 + , fetchFromGitHub 4 , fetchPypi 5 }: 6 ··· 23 "CVE-2022-28347" 24 "CVE-2022-28346" 25 ]; 26 + }; 27 + }); 28 + django-extensions = super.django-extensions.overridePythonAttrs (old: rec { 29 + version = "3.1.5"; 30 + src = fetchFromGitHub { 31 + inherit version; 32 + owner = "django-extensions"; 33 + repo = "django-extensions"; 34 + rev = "e43f383dae3a35237e42f6acfe1207a8e7e7bdf5"; 35 + hash = "sha256-NAMa78KhAuoJfp0Cb0Codz84sRfRQ1JhSLNYRI4GBPM="; 36 }; 37 }); 38 };