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
cce2fd547b
commit
8220b0449c
1 changed files with 1 additions and 1 deletions
|
@ -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