python: fix passing wrong qt5 version to pythonInterpreters#98185
Closed
jorsn wants to merge 1 commit intoNixOS:masterfrom
Closed
python: fix passing wrong qt5 version to pythonInterpreters#98185jorsn wants to merge 1 commit intoNixOS:masterfrom
jorsn wants to merge 1 commit intoNixOS:masterfrom
Conversation
fixes c88f3ad, which resulted in qt 5.15 being used in pythonPackages, despite 5.14 being declared, and adapts qutebrowser accordingly. 'callPackage { pkgs = pkgs // { … }; }' does not work, because it does not take into account the recursive evaluation of nixpkgs: `pkgs/development/interpreters/python/default.nix` calls `pkgs/top-level/python-packages.nix` with `callPackage`. Thus, even if the former gets passed the updated `pkgs`, the latter always gets passed `pkgs.pkgs`. For the change in the qt5 version to apply consistently, 'pkgs.extend' must be used. qutebrowser only used the right qt5 version (5.15) because all pythonPackages used it anyway.
This was referenced Sep 18, 2020
Merged
Member
|
Thank you, you're completely right! I've opened a new PR taking your commit with some changes #98197. |
10 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
fixes c88f3ad, which resulted in qt 5.15 being used in pythonPackages, despite 5.14 being declared, and adapts qutebrowser accordingly.
Motivation for this change
'callPackage { pkgs = pkgs // { … }; }' does not work, because it does not take into account the recursive evaluation of nixpkgs:
pkgs/development/interpreters/python/default.nixcallspkgs/top-level/python-packages.nixwithcallPackage. Thus, even if the former gets passed the updatedpkgs, the latter always gets passedpkgs.pkgs.For the change in the qt5 version to apply consistently, 'pkgs.extend' must be used.
qutebrowser only used the right qt5 version (5.15) because all pythonPackages used it anyway.
Things done
sandboxinnix.confon non-NixOS linux)BuiltEvaluated and traced on platform(s)nix-shell -p nixpkgs-review --run "nixpkgs-review wip"./result/bin/)nix path-info -Sbefore and after)