10 lines
200 B
Nix
10 lines
200 B
Nix
{ poetry2nix, python3 }:
|
|
|
|
poetry2nix.mkPoetryApplication {
|
|
pname = "myintercom-audiosocket";
|
|
version = "0.0.1";
|
|
projectDir = ./.;
|
|
propagatedBuildInputs = [
|
|
python3.pkgs.audioop-lts
|
|
];
|
|
}
|