nixpkgs/pkgs/tools/audio
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
..
abcm2ps
abcmidi abcmidi: 2024.06.18 -> 2024.07.26 2024-07-27 13:17:32 +00:00
accuraterip-checksum treewide: remove unused with statements from maintainer lists 2024-07-29 10:06:20 +08:00
alsaequal
asap
audiowaveform
bark
beets treewide: remove unused lib (and other) arguments 2024-07-26 11:18:09 +02:00
botamusique
bpm-tools
catnip
catnip-gtk4
darkice
dl-librescore treewide: remove unused with statements from maintainer lists 2024-07-29 10:06:20 +08:00
dsp
essentia-extractor
ezstream
glyr
goxlr-utility speechd: introduce minimal variant, use it everywhere 2024-07-26 15:48:11 +03:00
gvolicon
headset-charge-indicator
headsetcontrol
isrcsubmit treewide: remove unused with statements from maintainer lists 2024-07-29 10:06:20 +08:00
kaldi
linuxwave
liquidsoap
loudgain
mictray
midicsv
midimonster
mp3cat
mpd-discord-rpc
mpd-mpris
mpd-notification
mpd-sima
mpdas
mpdcron
mpdris2 treewide: remove unused with statements from maintainer lists 2024-07-29 10:06:20 +08:00
mpris-scrobbler
nanotts
openai-whisper-cpp
opl3bankeditor
pa-applet
pasystray
patray treewide: sha256 -> hash attribute for pypi fetchers 2024-07-14 01:25:22 +08:00
picotts
piper treewide: Pass self when overriding Python 2024-08-03 12:18:56 +12:00
playerctl
pnmixer
pulsemixer
pw-volume
qastools
shaq
spotdl
stt
tidal-dl treewide: sha256 -> hash attribute for pypi fetchers 2024-07-14 01:25:22 +08:00
trx
tts treewide: Pass self when overriding Python 2024-08-03 12:18:56 +12:00
unflac
vgmtools
video2midi
volctl
volumeicon
whisper-ctranslate2
wyoming
yabridge
yabridgectl