poetry2nix/tests/eggs/default.nix
2020-11-26 14:46:51 +01:00

12 lines
216 B
Nix

{ lib, poetry2nix, python37, runCommandNoCC }:
let
drv = poetry2nix.mkPoetryApplication {
python = python37;
projectDir = ./.;
};
in
runCommandNoCC "egg-test"
{ } ''
${drv}/bin/egg-test
touch $out
''