1
Fork 0

fix python3 overrides

This commit is contained in:
Motiejus Jakštys 2024-01-16 00:31:18 +02:00
parent 074767b84c
commit bbac4f96b4
1 changed files with 13 additions and 8 deletions

View File

@ -15,12 +15,17 @@
stdenv.mkDerivation {
name = "e11sync";
propagatedBuildInputs = let
pythonEnv = python3.withPackages (ps:
pythonEnv =
(python3.override
{
packageOverrides = _: super: {
django = super.django_5;
};
})
.withPackages (ps:
with ps; [
django_5
django-compressor.override
{django = django_5;}
#{django-appconf = django-appconf.override {django = django_5;};}
django
django-compressor
geoip2
]);
in [