mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
weblate: skip null packages in relaxDeps logic
This fixes eval on staging, because there Python 3.14 is the default and
backports-zstd is null, because it is included by default.
(cherry picked from commit 0fd69dc26c)
This commit is contained in:
parent
5f796d0a6a
commit
2db122599b
1 changed files with 1 additions and 1 deletions
|
|
@ -111,7 +111,7 @@ python3Packages.buildPythonApplication (finalAttrs: {
|
|||
];
|
||||
in
|
||||
lib.concatMap (
|
||||
p: if lib.elem p.pname coreDeps then [ ] else [ p.pname ]
|
||||
p: if p == null || lib.elem p.pname coreDeps then [ ] else [ p.pname ]
|
||||
) finalAttrs.passthru.dependencies;
|
||||
|
||||
dependencies =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue