poetry2nix/tests/eggs/default.nix
adisbladis 18a77a95cd
!!
2020-11-30 19:28:07 +01:00

9 lines
281 B
Nix

{ lib, poetry2nix, python37, runCommandNoCC }:
let
drv = poetry2nix.mkPoetryApplication {
python = python37;
projectDir = ./.;
};
in
assert lib.strings.hasSuffix ".egg" (lib.elemAt drv.passthru.python.pkgs.pyasn1.src.urls 0);
runCommandNoCC "egg-test" { } "touch $out"