poetry2nix/tests/ruff/default.nix

14 lines
242 B
Nix
Raw Normal View History

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