mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00

This adds the following new tests: - trivial: minimaltest case - override-support: verify overriding - common-pkgs-1/2: verify commonly downloaded pypi pkgs can be built Also adds some overrides as needed by some of the tested packages.
8 lines
173 B
Nix
8 lines
173 B
Nix
{ lib, poetry2nix, python3 }:
|
|
|
|
poetry2nix.mkPoetryPackage {
|
|
python = python3;
|
|
pyproject = ./pyproject.toml;
|
|
poetryLock = ./poetry.lock;
|
|
src = lib.cleanSource ./.;
|
|
}
|