poetry2nix/tests/ruff/default.nix

21 lines
423 B
Nix
Raw Normal View History

2023-11-06 19:05:39 +00:00
{ poetry2nix, python3, runCommand }:
let
2023-11-08 13:38:39 -05:00
env1 = poetry2nix.mkPoetryEnv {
2023-11-06 19:05:39 +00:00
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
};
2023-11-08 13:38:39 -05:00
env2 = poetry2nix.mkPoetryEnv {
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
preferWheels = true;
};
2023-11-06 19:05:39 +00:00
in
runCommand "ruff-test"
{ } ''
2023-11-08 13:38:39 -05:00
${env1}/bin/ruff version
${env2}/bin/ruff version
2023-11-06 19:05:39 +00:00
touch $out
''