mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-04 16:51:40 -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 (
|
astroid = super.astroid.overridePythonAttrs (
|
||||||
old: rec {
|
old: rec {
|
||||||
buildInputs = (old.buildInputs or [ ]) ++ [ self.pytest-runner ];
|
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 (
|
pygame = super.pygame.overridePythonAttrs (
|
||||||
old: rec {
|
old: rec {
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -1157,6 +1168,11 @@ self: super:
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
rmfuse = super.rmfuse.overridePythonAttrs (old: {
|
||||||
|
propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ self.setuptools ];
|
||||||
|
});
|
||||||
|
|
||||||
scipy = super.scipy.overridePythonAttrs (
|
scipy = super.scipy.overridePythonAttrs (
|
||||||
old:
|
old:
|
||||||
if old.format != "wheel" then {
|
if old.format != "wheel" then {
|
||||||
|
|
Loading…
Add table
Reference in a new issue