poetry2nix/tests/pytest-randomly/default.nix
2023-10-26 12:28:09 +13:00

13 lines
272 B
Nix

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