poetry2nix/tests/wheel-wheel/pyproject.toml
Phillip Cloud ffa5261510
fix: disallow the wheel package to preferWheels
Otherwise an infinite recursion error occurs.
2023-01-12 05:33:38 -05:00

13 lines
301 B
TOML

[tool.poetry]
name = "test-wheel-wheel"
version = "0.1.0"
description = "Test of python wheel-wheel package"
authors = ["Your Name <you@example.com>"]
[tool.poetry.dependencies]
python = "^3.9"
wheel = "^0.38.4"
[build-system]
requires = ["poetry-core>=1"]
build-backend = "poetry.core.masonry.api"