poetry2nix/tests/missing-iswheel/default.nix
2023-01-07 06:57:29 -05:00

9 lines
192 B
Nix

{ lib, poetry2nix, python3 }:
let
env = poetry2nix.mkPoetryEnv {
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
};
in
env.python.pkgs.mkdocstrings