poetry2nix/tests/pytest-randomly/default.nix
2021-09-16 11:41:38 -04:00

13 lines
277 B
Nix

{ lib, 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
''