mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
9 lines
281 B
Nix
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"
|