poetry2nix/tests/eggs/default.nix

10 lines
281 B
Nix
Raw Normal View History

{ lib, poetry2nix, python37, runCommandNoCC }:
2020-01-07 23:40:40 +00:00
let
drv = poetry2nix.mkPoetryApplication {
python = python37;
2020-11-26 14:46:51 +01:00
projectDir = ./.;
2020-01-07 23:40:40 +00:00
};
in
assert lib.strings.hasSuffix ".egg" (lib.elemAt drv.passthru.python.pkgs.pyasn1.src.urls 0);
2020-11-30 19:28:07 +01:00
runCommandNoCC "egg-test" { } "touch $out"