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:
Frederik Rietdijk 2020-11-22 13:17:19 +01:00
parent cce2fd547b
commit 8220b0449c

View file

@ -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;};