forked from mirrors/nixpkgs
python.tests: use self.callPackage instead of super.callPackage
super was incorrectly possible until https://github.com/NixOS/nixpkgs/pull/104201 got merged.
This commit is contained in:
parent
6a23dde75b
commit
7726f81b13
|
@ -4,7 +4,7 @@ let
|
|||
|
||||
python = let
|
||||
packageOverrides = self: super: {
|
||||
typeddep = super.callPackage ./typeddep {};
|
||||
typeddep = self.callPackage ./typeddep {};
|
||||
};
|
||||
in interpreter.override {inherit packageOverrides; self = python;};
|
||||
|
||||
|
|
Loading…
Reference in a new issue