Skip to content

Commit

Permalink
fix(pdm): Make parsed_deps lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
purepani authored and mergify[bot] committed Oct 17, 2023
1 parent 44703d4 commit 276ad03
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions modules/dream2nix/WIP-python-pdm/lib.nix
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,12 @@
isUsableFilename {inherit environ filename;}
)
sources;
parsedDeps = (
parsedDeps = with lib.trivial; (
map
libpyproject.pep508.parseString
((flip pipe) [
lib.strings.toLower
libpyproject.pep508.parseString
])
item.dependencies or []
);
value = {
Expand Down

0 comments on commit 276ad03

Please sign in to comment.