poetry2nix/tests/pytest-redis/default.nix
2023-10-28 07:06:19 -04:00

10 lines
194 B
Nix

{ poetry2nix, runCommand }:
let
env = poetry2nix.mkPoetryEnv {
projectDir = ./.;
};
in
runCommand "pytest-redis-test" { } ''
${env}/bin/python -c 'import pytest_redis'
touch $out
''