Files
nixpkgs/pkgs/development/python-modules/onkyo-eiscp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
613 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
docopt,
netifaces,
}:
buildPythonPackage rec {
pname = "onkyo-eiscp";
version = "1.2.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "761abb16c654a1136763b927d094174d41f282809e44ea32cd47e199dd79d9c9";
};
propagatedBuildInputs = [
docopt
netifaces
];
meta = with lib; {
description = "Control Onkyo receivers over ethernet";
mainProgram = "onkyo";
homepage = "https://github.com/miracle2k/onkyo-eiscp";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
};
}