poetry2nix/tests/cattrs/default.nix
2023-11-25 03:30:55 +13:00

10 lines
182 B
Nix

{ poetry2nix, runCommand }:
let
env = poetry2nix.mkPoetryEnv {
projectDir = ./.;
};
in
runCommand "cattrs-test" { } ''
${env}/bin/python -c 'import cattrs'
touch $out
''