poetry2nix/tests/gitlint/default.nix

10 lines
169 B
Nix
Raw Normal View History

2023-03-13 10:40:00 +13:00
{ poetry2nix, runCommand }:
let
env = poetry2nix.mkPoetryEnv {
projectDir = ./.;
};
in
runCommand "gitlint-test" { } ''
2023-03-13 10:40:00 +13:00
${env}/bin/gitlint --version > $out
''