10 lines
136 B
Nix
10 lines
136 B
Nix
with import <nixpkgs> { };
|
|
|
|
mkShell {
|
|
buildInputs = [
|
|
poetry
|
|
];
|
|
propagatedBuildInputs = [
|
|
python3.pkgs.audioop-lts
|
|
];
|
|
}
|