poetry2nix/tests/pytest-randomly/default.nix

14 lines
272 B
Nix
Raw Normal View History

2023-10-26 12:18:24 +13:00
{ poetry2nix, python39, runCommand }:
2021-09-16 11:41:38 -04:00
let
env = poetry2nix.mkPoetryEnv {
python = python39;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
};
in
runCommand "pytest_randomly"
{ } ''
${env}/bin/python -c 'import pytest_randomly'
touch $out
''