poetry2nix/tests/override-support/pyproject.toml
Tobias Pflug 1bfd3d192b
Add more tests
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.
2019-11-29 10:07:06 +00:00

14 lines
281 B
TOML

[tool.poetry]
name = "test"
version = "0.1.0"
description = "poetry2nix test"
authors = ["Your Name <you@example.com>"]
[tool.poetry.dependencies]
python = "^3.6"
alembic = "1.0.10"
Flask = "^1.1.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"