Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
base: da9dc6167598
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
compare: 3826d7590403
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Sep 27, 2020

  1. fix passing qt5 version to pythonInterpreters

    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.
    
    (cherry picked from commit 626ce32e9fd52b8b73e499d29363e610be55c91e)
    jorsn authored and FRidh committed Sep 27, 2020
    Configuration menu
    Copy the full SHA
    54ef32d View commit details
    Browse the repository at this point in the history
  2. pythonPackages.fastparquet: disable broken test

    (cherry picked from commit 3821543)
    cc #97479
    veprbl committed Sep 27, 2020
    Configuration menu
    Copy the full SHA
    3826d75 View commit details
    Browse the repository at this point in the history