fix builds by adding "typing" group to poetry-env-test

This commit is contained in:
Phillip Cloud 2022-10-18 08:35:43 -07:00
parent d62ba59f1e
commit 9ea1bcb876
No known key found for this signature in database
GPG key ID: D908212070FD785E

View file

@ -105,7 +105,10 @@ builtins.removeAttrs
poetry-env =
let
env = poetry2nix.mkPoetryEnv { projectDir = ../pkgs/poetry; };
env = poetry2nix.mkPoetryEnv {
projectDir = ../pkgs/poetry;
groups = [ "typing" ];
};
in
pkgs.runCommand "poetry-env-test" { } ''
${env}/bin/python -c 'import requests'