File tree 1 file changed +12
-13
lines changed
pkgs/development/python-modules/pyside6
1 file changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -94,19 +94,18 @@ stdenv.mkDerivation (finalAttrs: {
94
94
pythonImportsCheckHook
95
95
] ++ lib . optionals stdenv . hostPlatform . isDarwin [ moveBuildTree ] ;
96
96
97
- buildInputs =
98
- python . pkgs . qt6 . darwinVersionInputs
99
- ++ (
100
- if stdenv . hostPlatform . isLinux then
101
- # qtwebengine fails under darwin
102
- # see https://github.com/NixOS/nixpkgs/pull/312987
103
- packages ++ [ python . pkgs . qt6 . qtwebengine ]
104
- else
105
- [
106
- qt_linked
107
- cups
108
- ]
109
- ) ;
97
+ buildInputs = (
98
+ if stdenv . hostPlatform . isLinux then
99
+ # qtwebengine fails under darwin
100
+ # see https://github.com/NixOS/nixpkgs/pull/312987
101
+ packages ++ [ python . pkgs . qt6 . qtwebengine ]
102
+ else
103
+ python . pkgs . qt6 . darwinVersionInputs
104
+ ++ [
105
+ qt_linked
106
+ cups
107
+ ]
108
+ ) ;
110
109
111
110
propagatedBuildInputs = [ shiboken6 ] ;
112
111
You can’t perform that action at this time.
0 commit comments