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
superherointj
be7717e777
azure-cli-extensions.oracle-database: init at 1.0.0b1
2024-07-29 11:22:55 -03:00
superherointj
29a15dd797
azure-cli-extensions.dataprotection: 1.5.1 -> 1.5.2
2024-07-29 10:34:14 -03:00
superherointj
e603eb2768
azure-cli-extensions.azure-firewall: 1.0.1 -> 1.1.0
2024-07-29 10:34:14 -03:00
superherointj
f447d7fc8e
azure-cli-extensions.amg: 1.3.5 -> 1.3.6
2024-07-29 10:34:14 -03:00
superherointj
c928625c6d
azure-cli-extensions.aks-preview: 6.0.0b1 -> 7.0.0b2
2024-07-29 10:34:13 -03:00
Paul Meyer
3c70975ffc
azure-cli-extensions.vm-repair: 1.0.6 -> 1.0.7
...
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-07-17 18:14:16 +02:00
Paul Meyer
d272e3e524
azure-cli-extensions.redisenterprise: 0.1.4 -> 1.0.0
...
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-07-17 18:14:16 +02:00
Paul Meyer
638c5aa86c
azure-cli-extensions.monitor-control-service: 1.1.0 -> 1.2.0
...
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-07-17 18:14:16 +02:00
Paul Meyer
aec6996d82
azure-cli-extensions.bastion: 1.0.1 -> 1.0.2
...
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-07-17 18:14:15 +02:00
Paul Meyer
3cfc7bb505
azure-cli-extensions.aks-preview: 5.0.0b3 -> 6.0.0b1
...
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-07-17 18:14:15 +02:00
Paul Meyer
34aa63240a
azure-cli-extension.informatica: init at 1.0.0b1
...
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-07-17 18:12:53 +02:00
Paul Meyer
6c35b92894
azure-cli-extension.acat: init at 1.0.0b1
...
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-07-17 18:12:03 +02:00
superherointj
db09ceb5bb
azure-cli: add generate-extensions routine
...
At nixpkgs, generate-extensions routine can be executed as:
nix run .#azure-cli.passthru.generate-extensions
2024-07-17 09:14:27 -03:00
superherointj
440922e97e
azure-cli: remove nested with in meta
2024-07-17 09:14:27 -03:00
superherointj
31cb985505
azure-cli: refresh dependencies list
2024-07-17 09:14:27 -03:00
superherointj
c2596337f1
azure-cli: add meta.downloadPage to azure-cli-core and azure-cli-telemetry
2024-07-17 09:14:27 -03:00
superherointj
d34c37a069
azure-cli: remove unnecessary pins
2024-07-17 09:14:27 -03:00
Paul Meyer
8db4060dd7
Merge pull request #326386 from andreasuvoss/add-azure-cli-extension-application-insights
...
azure-cli-extensions.application-insights: init at 1.2.1
2024-07-17 11:59:27 +02:00
Andreas Voss
38276988bd
azure-cli-extensions.application-insights: init at 1.2.1
2024-07-16 14:03:16 +02:00
Giovanni Bassi
bdc9938354
azure-cli-extensions.containerapp: init at 0.3.53
2024-07-15 13:28:17 -03:00
superherointj
d8d9485a4a
azure-cli: add stridtech team as maintainer
2024-07-12 12:16:22 +02:00
superherointj
96cd538b68
azure-cli: nixfmt format
2024-07-10 06:29:38 -03:00
superherointj
cb9bbcdc82
azure-cli: move from top-level to by-name
2024-07-10 06:08:28 -03:00