nixpkgs/pkgs/by-name/na
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
..
namespace-cli namespace-cli: 0.0.386 -> 0.0.388 2024-07-24 23:54:23 +00:00
nanoboyadvance nanoboyadvance: Disable portable mode 2024-07-22 22:11:38 +02:00
nanopb treewide: Pass self when overriding Python 2024-08-03 12:18:56 +12:00
naproche naproche: unstable-2024-01-18 -> unstable-2024-05-19 2024-07-06 18:39:04 +01:00
naps2 naps2: 7.4.2 -> 7.4.3 2024-07-07 01:22:27 +00:00
nar-serve nar-serve: 0.6.1 -> 0.7.0 2024-07-31 09:57:36 +02:00
narsil narsil: 1.3.0-84-g042c39e9c -> 1.3.0-85-g68f1491ca 2024-07-25 00:44:55 +00:00
nats-kafka nats-kafka: init at 1.4.2 2024-06-07 14:43:48 +03:00
nautilus adwaita-icon-theme: Move from gnome scope to top-level 2024-07-01 08:26:46 +02:00
nautilus-open-in-blackbox nautilus-python: Move from gnome scope to top-level 2024-07-01 08:26:44 +02:00
nautilus-python nautilus-python: Clean up 2024-07-01 08:26:44 +02:00
navidrome navidrome: 0.52.0 -> 0.52.5 2024-05-18 04:32:19 +00:00
nawk treewide: Remove the definite article from meta.description 2024-06-09 23:08:46 +02:00