Add overrides removing LICENSE files

They lead to collisions.

Probably there should be some cleanup for these kind of files? cc @FRidh
This commit is contained in:
adisbladis 2020-01-12 20:29:23 +00:00
parent 2f59f1db2a
commit bf56efefda
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -298,6 +298,14 @@ in
}
);
pytest-datadir = super.pytest-datadir.overrideAttrs (
old: {
postInstall = ''
rm -f $out/LICENSE
'';
}
);
python-prctl = super.python-prctl.overrideAttrs (
old: {
buildInputs = old.buildInputs ++ [
@ -345,6 +353,14 @@ in
}
);
vose-alias-method = super.pytest-datadir.overrideAttrs (
old: {
postInstall = ''
rm -f $out/LICENSE
'';
}
);
# Stop infinite recursion by using bootstrapped pkg from nixpkgs
wheel = (
pkgs.python3.pkgs.override {