mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-06 09:41:39 -05:00
Merge pull request #1206 from jaybutera/patch-1
patch missing old buildinputs
This commit is contained in:
commit
c29afc154b
1 changed files with 3 additions and 3 deletions
|
@ -2473,7 +2473,7 @@ lib.composeManyExtensions [
|
|||
in
|
||||
selenium.overridePythonAttrs (old: {
|
||||
# Selenium <4 can be installed from sources, with setuptools
|
||||
buildInputs = old.buildInputs ++ (lib.optionals (!v4orLater) [ self.setuptools ]);
|
||||
buildInputs = (old.buildInputs or [ ]) ++ (lib.optionals (!v4orLater) [ self.setuptools ]);
|
||||
});
|
||||
|
||||
shapely = super.shapely.overridePythonAttrs (
|
||||
|
@ -2523,7 +2523,7 @@ lib.composeManyExtensions [
|
|||
});
|
||||
|
||||
systemd-python = super.systemd-python.overridePythonAttrs (old: {
|
||||
buildInputs = old.buildInputs ++ [ pkgs.systemd ];
|
||||
buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.systemd ];
|
||||
nativeBuildInputs = old.nativeBuildInputs ++ [ pkgs.pkg-config ];
|
||||
});
|
||||
|
||||
|
@ -2908,7 +2908,7 @@ lib.composeManyExtensions [
|
|||
libGL
|
||||
libglvnd
|
||||
mesa
|
||||
] ++ old.buildInputs;
|
||||
] ++ (old.buildInputs or [ ]);
|
||||
|
||||
buildPhase = ''
|
||||
${localPython.interpreter} build.py -v build_wx
|
||||
|
|
Loading…
Add table
Reference in a new issue