poetry2nix/tests/awsume/default.nix
2023-10-26 06:05:15 -04:00

10 lines
241 B
Nix

{ lib, poetry2nix, python3, runCommand }:
let
env = poetry2nix.mkPoetryEnv {
python = python3;
projectDir = ./.;
};
in
runCommand "awsume-test" { } ''
"${lib.getExe env}" -c 'import awsume; print(awsume.__VERSION__)' > $out
''