nixpkgs/pkgs/applications/networking/cluster/nixops/pyproject.toml
Andy Chun @noneucat ea7336a084 nixops_unstable: set Python interpreter to python39
The package encounters a build error when building with Python 3.10 due to
API breakage (collections.MutableMapping -> collections.abc.MutableMapping).
2022-06-23 15:46:26 -07:00

22 lines
924 B
TOML

[tool.poetry]
name = "nixopsenv"
version = "2.0.0"
description = "NixOps 2.0"
authors = ["Adam Hoese <adam.hose@tweag.io>"]
[tool.poetry.dependencies]
python = "^3.9"
nixops = {git = "https://github.com/NixOS/nixops.git"}
nixops-aws = {git = "https://github.com/NixOS/nixops-aws.git"}
nixops-digitalocean = {git = "https://github.com/nix-community/nixops-digitalocean.git"}
nixops-encrypted-links = {git = "https://github.com/nix-community/nixops-encrypted-links.git"}
nixops-gcp = {git = "https://github.com/nix-community/nixops-gce.git"}
nixops-hercules-ci = {git = "https://github.com/hercules-ci/nixops-hercules-ci.git"}
nixops-hetzner = {git = "https://github.com/NixOS/nixops-hetzner"}
nixopsvbox = {git = "https://github.com/nix-community/nixops-vbox.git"}
nixops-virtd = {git = "https://github.com/nix-community/nixops-libvirtd.git"}
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"