mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
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:
parent
2f59f1db2a
commit
bf56efefda
1 changed files with 16 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue