nixpkgs/pkgs/applications/networking/cluster/nixops/shell.nix
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

11 lines
165 B
Nix

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
packages = [
pkgs.poetry2nix.cli
pkgs.pkg-config
pkgs.libvirt
pkgs.python39Packages.poetry
];
}