poetry2nix/tests/fastapi-utils/default.nix
2023-03-24 12:12:14 +13:00

13 lines
276 B
Nix

{ lib, poetry2nix, python3, runCommand }:
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
''