mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-06 17:51:40 -05:00

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.
16 lines
313 B
TOML
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"
|