Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0d0a4f160e33
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e63533387019
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 5, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    mkg20001 Maciej Krüger
    Copy the full SHA
    e635333 View commit details
Showing with 10 additions and 1 deletion.
  1. +10 −1 pkgs/top-level/python-packages.nix
11 changes: 10 additions & 1 deletion pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -4986,7 +4986,16 @@ in {

pywinrm = callPackage ../development/python-modules/pywinrm { };

pyxattr = callPackage ../development/python-modules/pyxattr { };
pyxattr = let
pyxattr' = callPackage ../development/python-modules/pyxattr { };
pyxattr_2 = pyxattr'.overridePythonAttrs(oldAttrs: {
version = "0.6.1";
src = oldAttrs.src.override {
inherit version;
sha256 = "b525843f6b51036198b3b87c4773a5093d6dec57d60c18a1f269dd7059aa16e3";
};
});
in if isPy3k then pyxattr' else pyxattr_2;

pyamg = callPackage ../development/python-modules/pyamg { };