mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-04 16:51:40 -05:00
Fix Egg support
This commit is contained in:
parent
b520fa1fce
commit
2f59f1db2a
2 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ pythonPackages.callPackage (
|
|||
sourceDist = builtins.filter isSdist fileCandidates;
|
||||
eggs = builtins.filter isEgg fileCandidates;
|
||||
|
||||
entries = (if preferWheel then binaryDist ++ sourceDist else sourceDist ++ binaryDist);
|
||||
entries = (if preferWheel then binaryDist ++ sourceDist else sourceDist ++ binaryDist) ++ eggs;
|
||||
|
||||
lockFileEntry = builtins.head entries;
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@ builtins.removeAttrs
|
|||
preferWheel = pkgs.callPackage ./prefer-wheel { inherit poetry2nix; };
|
||||
|
||||
# Egg support not yet in channel, uncomment when channel progressed
|
||||
# eggs = pkgs.callPackage ./eggs { inherit poetry2nix; };
|
||||
eggs = pkgs.callPackage ./eggs { inherit poetry2nix; };
|
||||
|
||||
inherit (poetry2nix) doc;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue