Merge pull request #42822 from mpickering/patch-3

Update Python documentation overlay
This commit is contained in:
Jörg Thalheim
2018-07-02 10:51:18 +01:00
committed by GitHub
+2 -2
View File
@@ -1029,7 +1029,7 @@ To alter a python package using overlays, you would use the following approach:
```nix ```nix
self: super: self: super:
rec { {
python = super.python.override { python = super.python.override {
packageOverrides = python-self: python-super: { packageOverrides = python-self: python-super: {
bepasty-server = python-super.bepasty-server.overrideAttrs ( oldAttrs: { bepasty-server = python-super.bepasty-server.overrideAttrs ( oldAttrs: {
@@ -1041,7 +1041,7 @@ rec {
}); });
}; };
}; };
pythonPackages = python.pkgs; pythonPackages = self.python.pkgs;
} }
``` ```