···11-[tool.poetry]
22-name = "nixopsenv"
33-version = "2.0.0"
44-description = "NixOps 2.0"
55-authors = ["Adam Hoese <adam.hose@tweag.io>"]
66-77-[tool.poetry.dependencies]
88-python = "^3.10"
99-nixops = {git = "https://github.com/NixOS/nixops.git"}
1010-nixops-aws = {git = "https://github.com/NixOS/nixops-aws.git"}
1111-nixops-digitalocean = {git = "https://github.com/nix-community/nixops-digitalocean.git"}
1212-nixops-encrypted-links = {git = "https://github.com/nix-community/nixops-encrypted-links.git"}
1313-nixops-gcp = {git = "https://github.com/nix-community/nixops-gce.git"}
1414-nixops-hercules-ci = {git = "https://github.com/hercules-ci/nixops-hercules-ci.git"}
1515-nixops-hetzner = {git = "https://github.com/NixOS/nixops-hetzner"}
1616-nixops-hetznercloud = {git = "https://github.com/lukebfox/nixops-hetznercloud.git"}
1717-nixopsvbox = {git = "https://github.com/nix-community/nixops-vbox.git"}
1818-nixops-virtd = {git = "https://github.com/nix-community/nixops-libvirtd.git"}
1919-2020-# poetry lock would download an excessive number of wheels looking for a compatible version, so
2121-# we pin a feasible range here. This does not represent a real constraint on the version and
2222-# would be ok to remove/update/ignore in future upgrades. Note that a botocore wheel is about 50MB.
2323-boto3 = "^1.26"
2424-botocore = "^1.29"
2525-2626-[build-system]
2727-requires = ["poetry>=0.12"]
2828-build-backend = "poetry.masonry.api"