mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-09 12:06:40 -04:00
23 lines
476 B
Nix
23 lines
476 B
Nix
![]() |
{ lib }:
|
||
|
let
|
||
|
inherit (builtins) mapAttrs;
|
||
|
inherit (lib) fix;
|
||
|
in
|
||
|
|
||
|
fix (self: mapAttrs (_: path: import path ({ inherit lib; } // self)) {
|
||
|
pip = ./pip.nix;
|
||
|
pypa = ./pypa.nix;
|
||
|
project = ./project.nix;
|
||
|
renderers = ./renderers.nix;
|
||
|
validators = ./validators.nix;
|
||
|
poetry = ./poetry.nix;
|
||
|
|
||
|
pep427 = ./pep427.nix;
|
||
|
pep440 = ./pep440.nix;
|
||
|
pep508 = ./pep508.nix;
|
||
|
pep518 = ./pep518.nix;
|
||
|
pep599 = ./pep599.nix;
|
||
|
pep600 = ./pep600.nix;
|
||
|
pep621 = ./pep621.nix;
|
||
|
})
|