Skip to content

Commit

Permalink
awscli2: allow composible python packageOverrides
Browse files Browse the repository at this point in the history
Same problem and solution as #223268.
  • Loading branch information
lbpdt committed Apr 3, 2023
1 parent e5f6e93 commit e8828da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/tools/admin/awscli2/default.nix
Expand Up @@ -9,8 +9,8 @@
}:

let
py = python3.override {
packageOverrides = self: super: {
py = python3 // {
pkgs = python3.pkgs.overrideScope (self: super: {
ipython = super.ipython.overridePythonAttrs (oldAttrs: rec {
pname = "ipython";
version = "8.5.0";
Expand All @@ -31,7 +31,7 @@ let
hash = "sha256-nxzRax6GwpaPJRnX+zHdnWaZFvUVYSwmnRTp7VK1FlA=";
};
});
};
});
};

in
Expand Down

0 comments on commit e8828da

Please sign in to comment.