nixos-configuration/pkgs/myintercom-doorbell/default.nix
2025-12-09 15:31:25 +01:00

10 lines
200 B
Nix

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