poetry2nix/tests/fastapi-utils/default.nix

14 lines
271 B
Nix
Raw Normal View History

2023-10-26 12:18:24 +13:00
{ poetry2nix, python3, runCommand }:
2023-03-16 09:09:39 -07:00
let
env = poetry2nix.mkPoetryEnv {
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
};
in
runCommand "fastapi-utils-test"
{ } ''
${env}/bin/python -c 'import fastapi_utils'
touch $out
''