overrides: Add overrides to build rmfuse

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

View file

@ -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 {