mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 19:23:50 +00:00
ea7336a084
The package encounters a build error when building with Python 3.10 due to API breakage (collections.MutableMapping -> collections.abc.MutableMapping).
11 lines
165 B
Nix
11 lines
165 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
pkgs.mkShell {
|
|
packages = [
|
|
pkgs.poetry2nix.cli
|
|
pkgs.pkg-config
|
|
pkgs.libvirt
|
|
pkgs.python39Packages.poetry
|
|
];
|
|
}
|