···1-[tool.poetry]
2-name = "nixopsenv"
3-version = "2.0.0"
4-description = "NixOps 2.0"
5-authors = ["Adam Hoese <adam.hose@tweag.io>"]
6-7-[tool.poetry.dependencies]
8-python = "^3.10"
9-nixops = {git = "https://github.com/NixOS/nixops.git"}
10-nixops-aws = {git = "https://github.com/NixOS/nixops-aws.git"}
11-nixops-digitalocean = {git = "https://github.com/nix-community/nixops-digitalocean.git"}
12-nixops-encrypted-links = {git = "https://github.com/nix-community/nixops-encrypted-links.git"}
13-nixops-gcp = {git = "https://github.com/nix-community/nixops-gce.git"}
14-nixops-hercules-ci = {git = "https://github.com/hercules-ci/nixops-hercules-ci.git"}
15-nixops-hetzner = {git = "https://github.com/NixOS/nixops-hetzner"}
16-nixops-hetznercloud = {git = "https://github.com/lukebfox/nixops-hetznercloud.git"}
17-nixopsvbox = {git = "https://github.com/nix-community/nixops-vbox.git"}
18-nixops-virtd = {git = "https://github.com/nix-community/nixops-libvirtd.git"}
19-20-# poetry lock would download an excessive number of wheels looking for a compatible version, so
21-# we pin a feasible range here. This does not represent a real constraint on the version and
22-# would be ok to remove/update/ignore in future upgrades. Note that a botocore wheel is about 50MB.
23-boto3 = "^1.26"
24-botocore = "^1.29"
25-26-[build-system]
27-requires = ["poetry>=0.12"]
28-build-backend = "poetry.masonry.api"