poetry2nix/tests/git-deps-pinned/pyproject.toml
adisbladis bf48f272c1
Add CLI to supplement git hashes
This is not required for private repos where builtins.fetchGit would
suffice but _is_ required for Hydra (nixpkgs) where builtins.fetchGit is not allowed.
2019-12-28 21:45:51 +00:00

13 lines
332 B
TOML

[tool.poetry]
name = "git-deps"
version = "0.1.0"
description = "poetry2nix test"
authors = ["Your Name <you@example.com>"]
[tool.poetry.dependencies]
python = "^3.6"
alembic = { git = "https://github.com/sqlalchemy/alembic.git", tag = "rel_1_3_1" }
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"