poetry2nix/tests/env/default.nix
2019-12-17 14:19:32 +01:00

9 lines
223 B
Nix

{ lib, poetry2nix, python3, runCommand }:
let env = poetry2nix.mkPoetryEnv {
python = python3;
poetrylock = ./poetry.lock;
};
in runCommand "env-test" {} ''
${env}/bin/python -c 'import alembic'
touch $out
''