Update Python documentation overlay

Using a recursive attribute set is not recommended.
wip/yesman
Matthew Pickering 6 years ago committed by GitHub
parent e5b02664aa
commit 11551f06e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      doc/languages-frameworks/python.section.md

@ -1029,7 +1029,7 @@ To alter a python package using overlays, you would use the following approach:
```nix
self: super:
rec {
{
python = super.python.override {
packageOverrides = python-self: python-super: {
bepasty-server = python-super.bepasty-server.overrideAttrs ( oldAttrs: {
@ -1041,7 +1041,7 @@ rec {
});
};
};
pythonPackages = python.pkgs;
pythonPackages = self.python.pkgs;
}
```

Loading…
Cancel
Save