mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
Merge pull request #42822 from mpickering/patch-3
Update Python documentation overlay
This commit is contained in:
commit
a983ab304b
|
@ -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…
Reference in a new issue