poetry2nix/tests/blinker-1_6_2/default.nix

11 lines
184 B
Nix
Raw Normal View History

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