poetry2nix/tests/mkdocstrings-wheel/default.nix

13 lines
294 B
Nix
Raw Normal View History

2023-10-26 12:18:24 +13:00
{ poetry2nix, python3 }:
let
env = poetry2nix.mkPoetryEnv {
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
preferWheels = true;
};
pkg = env.python.pkgs.mkdocstrings;
isMkdocstringsWheel = pkg.src.isWheel;
in
assert isMkdocstringsWheel; pkg