poetry2nix/tests/blinker-1_6_2/default.nix
2023-10-12 12:47:46 +00:00

10 lines
184 B
Nix

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