poetry2nix/tests/gitlint-core/default.nix

10 lines
174 B
Nix
Raw Normal View History

2023-04-01 06:37:23 -04:00
{ poetry2nix, runCommand }:
let
env = poetry2nix.mkPoetryEnv {
projectDir = ./.;
};
in
runCommand "gitlint-core-test" { } ''
${env}/bin/gitlint --version > $out
''