poetry2nix/tests/pytest-redis/default.nix

11 lines
194 B
Nix
Raw Normal View History

2023-10-27 08:51:13 +00:00
{ poetry2nix, runCommand }:
let
env = poetry2nix.mkPoetryEnv {
projectDir = ./.;
};
in
runCommand "pytest-redis-test" { } ''
${env}/bin/python -c 'import pytest_redis'
touch $out
''