2024-03-04 08:14:11 +00:00
|
|
|
---
|
|
|
|
synopsis: "In the debugger, `while evaluating the attribute` errors now include position information"
|
|
|
|
prs: 9915
|
2024-05-15 02:14:58 +00:00
|
|
|
credits: 9999years
|
|
|
|
category: Fixes
|
2024-03-04 08:14:11 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
Before:
|
|
|
|
|
|
|
|
```
|
|
|
|
0: while evaluating the attribute 'python311.pythonForBuild.pkgs'
|
|
|
|
0x600001522598
|
|
|
|
```
|
|
|
|
|
|
|
|
After:
|
|
|
|
|
|
|
|
```
|
|
|
|
0: while evaluating the attribute 'python311.pythonForBuild.pkgs'
|
|
|
|
/nix/store/hg65h51xnp74ikahns9hyf3py5mlbbqq-source/overrides/default.nix:132:27
|
|
|
|
|
|
|
|
131|
|
|
|
|
132| bootstrappingBase = pkgs.${self.python.pythonAttr}.pythonForBuild.pkgs;
|
|
|
|
| ^
|
|
|
|
133| in
|
|
|
|
```
|