overrides: Make more overrides safe against missing attrs

This commit is contained in:
adisbladis 2021-02-15 16:37:08 +01:00
parent e3c3e14e99
commit 2bc8743470
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -82,7 +82,7 @@ self: super:
);
celery = super.celery.overridePythonAttrs (old: {
propagatedBuildInputs = old.propagatedBuildInputs ++ [ self.setuptools ];
propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ self.setuptools ];
});
cssselect2 = super.cssselect2.overridePythonAttrs (
@ -379,8 +379,8 @@ self: super:
);
jsonslicer = super.jsonslicer.overridePythonAttrs (old: {
nativeBuildInputs = old.nativeBuildInputs ++ [ pkgs.pkgconfig ];
buildInputs = old.buildInputs ++ [ pkgs.yajl ];
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.pkgconfig ];
buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.yajl ];
});
jupyter = super.jupyter.overridePythonAttrs (