mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-06 01:31:39 -05:00
11 lines
273 B
Nix
11 lines
273 B
Nix
![]() |
{ lib, poetry2nix, python37 }:
|
||
|
|
||
|
let
|
||
|
inherit (builtins) elem map;
|
||
|
drv = poetry2nix.mkPoetryPackages {
|
||
|
projectDir = ./.;
|
||
|
python = python37;
|
||
|
};
|
||
|
packageNames = map (package: package.pname) drv.poetryPackages;
|
||
|
in assert builtins.elem "certifi" packageNames; drv
|