poetry2nix/tests/prefer-wheel/pyproject.toml
Jairo Llopis 936f2b08bb
tests: assert that setting preferWheel with overridePythonAttrs fails
Adding `preferWheel = true` to a package can only be done with `.override` and not with `.overridePythonAttrs`. This is something unexpected or undocumented until now. This test proves that it doesn't work.
2023-01-19 10:53:20 +00:00

16 lines
313 B
TOML

[tool.poetry]
name = "test_preferwheel"
version = "0.1.0"
description = ""
authors = ["adisbladis <adisbladis@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.7"
maturin = "0.7.7"
funcy = "1.17"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"