poetry2nix/tests/pendulum/default.nix
adisbladis 573b643d7e tests.pendulum: Use python 3.8
MacOS ci is unreliable and fails with the wheel install on python 3.10.
My guess is that it's an older version of setuptools that's causing this.
2023-03-23 12:04:35 +13:00

7 lines
190 B
Nix

{ lib, poetry2nix, runCommand, python38 }:
poetry2nix.mkPoetryApplication {
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
python = python38;
}