1{ stdenv, buildPythonPackage, fetchPypi
2, docopt, netifaces }:
3
4buildPythonPackage rec {
5 pname = "onkyo-eiscp";
6 version = "1.2.5";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "cfcca6bc6c36992095f5aa4a15870a3ef89b9a26d991da2333891c2675d4ef1b";
11 };
12
13 propagatedBuildInputs = [ docopt netifaces ];
14
15 meta = with stdenv.lib; {
16 description = "Control Onkyo receivers over ethernet";
17 homepage = https://github.com/miracle2k/onkyo-eiscp;
18 license = licenses.mit;
19 maintainers = with maintainers; [ peterhoeg ];
20 };
21}