nixpkgs/pkgs/applications
adisbladis e0816431a2 treewide: Pass self when overriding Python
Otherwise references to the Python interpreter inside the set are wrong, as demonstrated by:
``` nix
with import <nixpkgs> { };
let
  python' = python3.override {
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the _non_ overriden requests.

And the same with `self`:
```
with import <nixpkgs> { };
let
  python' = python3.override {
    self = python';
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the overriden requests.

This can manifest itself as file collisions when constructing environments or as subtly incorrect dependency graphs.
2024-08-03 12:18:56 +12:00
..
accessibility Merge remote-tracking branch 'origin/master' into staging-next 2024-07-26 18:05:04 +02:00
audio spotify: 1.2.40.599.g606b7f29 -> 1.2.42.290.g242057a2 2024-08-02 10:41:42 +00:00
backup restic-integrity: 1.3.0 -> 1.3.1 2024-08-02 17:23:31 +02:00
blockchains erigon: 2.60.4 -> 2.60.5 2024-08-01 13:51:40 +00:00
display-managers Merge branch 'master' into staging-next 2024-07-22 22:53:31 +03:00
editors Merge pull request #330192 from philiptaron/kakoune-maintainer 2024-08-02 22:53:17 +08:00
emulators Merge pull request #331714 from r-ryantm/auto-update/libretro.atari800 2024-08-02 19:34:00 +01:00
file-managers treewide: remove unused with statements from maintainer lists 2024-07-29 10:06:20 +08:00
finance/denaro
gis treewide: Pass self when overriding Python 2024-08-03 12:18:56 +12:00
graphics treewide: Pass self when overriding Python 2024-08-03 12:18:56 +12:00
kde treewide: normalize maintainers list formatting 2024-07-30 16:26:22 +02:00
logging/sosreport treewide: remove unused with statements from maintainer lists 2024-07-29 10:06:20 +08:00
maui pkgs/applications: remove unused arguments 2024-07-26 11:36:49 +02:00
misc treewide: Pass self when overriding Python 2024-08-03 12:18:56 +12:00
networking treewide: Pass self when overriding Python 2024-08-03 12:18:56 +12:00
office treewide: Pass self when overriding Python 2024-08-03 12:18:56 +12:00
plasma-mobile treewide: remove unused with statements from maintainer lists 2024-07-29 10:06:20 +08:00
printing/pappl treewide: remove unused with statements from maintainer lists 2024-07-29 10:06:20 +08:00
qubes/qubes-core-vchan-xen qubes-core-vchan-xen: mark broken 2024-07-31 05:57:07 -03:00
radio treewide: remove unused with statements from maintainer lists 2024-07-29 10:06:20 +08:00
science cwltool: 3.1.20240508115724 -> 3.1.20240708091337 2024-08-01 14:09:26 -04:00
search recoll: 1.37.5 -> 1.39.1 2024-07-31 09:43:48 +00:00
system treewide: remove trailing space in description 2024-07-26 03:38:50 +02:00
terminal-emulators treewide: remove unused with statements from maintainer lists 2024-07-29 10:06:20 +08:00
version-management treewide: Pass self when overriding Python 2024-08-03 12:18:56 +12:00
video treewide: Pass self when overriding Python 2024-08-03 12:18:56 +12:00
virtualization cri-o-unwrapped: 1.30.3 -> 1.30.4 2024-08-02 03:58:40 +00:00
window-managers dwl: migrate to by-name 2024-07-29 22:40:49 -03:00