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

This commit is contained in:
Janik
2023-07-19 09:40:56 +02:00
committed by GitHub
@@ -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