mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-04 08:41:42 -05:00
overrides: Add overrides to build rmfuse
This commit is contained in:
parent
2bc8743470
commit
8ca228bd9c
1 changed files with 16 additions and 0 deletions
|
@ -46,6 +46,12 @@ self: super:
|
|||
}
|
||||
);
|
||||
|
||||
anyio = super.anyio.overridePythonAttrs (old: {
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py --replace 'setup()' 'setup(version="${old.version}")'
|
||||
'';
|
||||
});
|
||||
|
||||
astroid = super.astroid.overridePythonAttrs (
|
||||
old: rec {
|
||||
buildInputs = (old.buildInputs or [ ]) ++ [ self.pytest-runner ];
|
||||
|
@ -847,6 +853,11 @@ self: super:
|
|||
}
|
||||
);
|
||||
|
||||
pyfuse3 = super.pyfuse3.overridePythonAttrs (old: {
|
||||
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.pkg-config ];
|
||||
buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.fuse3 ];
|
||||
});
|
||||
|
||||
pygame = super.pygame.overridePythonAttrs (
|
||||
old: rec {
|
||||
nativeBuildInputs = [
|
||||
|
@ -1157,6 +1168,11 @@ self: super:
|
|||
'';
|
||||
};
|
||||
|
||||
|
||||
rmfuse = super.rmfuse.overridePythonAttrs (old: {
|
||||
propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ self.setuptools ];
|
||||
});
|
||||
|
||||
scipy = super.scipy.overridePythonAttrs (
|
||||
old:
|
||||
if old.format != "wheel" then {
|
||||
|
|
Loading…
Add table
Reference in a new issue