poetry2nix/tests/cattrs/default.nix

11 lines
182 B
Nix
Raw Normal View History

2023-11-24 12:45:44 +00:00
{ poetry2nix, runCommand }:
let
env = poetry2nix.mkPoetryEnv {
projectDir = ./.;
};
in
runCommand "cattrs-test" { } ''
${env}/bin/python -c 'import cattrs'
touch $out
''