Skip to content

Commit

Permalink
Merge pull request #1078 from phaer/pdm-sort-extras
Browse files Browse the repository at this point in the history
pdm: sort extras before making the key
  • Loading branch information
phaer authored Nov 21, 2024
2 parents 91bec8a + c554f54 commit a8dac99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/dream2nix/WIP-python-pdm/lib.nix
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@
mkExtrasKey = dep @ {extras ? [], ...}:
if extras == []
then "default"
else lib.concatStringsSep "," extras;
else lib.concatStringsSep "," (lib.naturalSort extras);

# Constructs dependency entry for internal use.
# We could use the pyproject.nix representation directly instead, but it seems
Expand Down

0 comments on commit a8dac99

Please sign in to comment.