about summary refs log tree commit diff
path: root/pkgs/development/python-modules/onkyo-eiscp/default.nix
blob: 7b5622cfeefbfb51b434bcb9575a0ca9f65bdc94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, buildPythonPackage, fetchPypi
, docopt, netifaces }:

buildPythonPackage rec {
  pname = "onkyo-eiscp";
  version = "1.2.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "cfcca6bc6c36992095f5aa4a15870a3ef89b9a26d991da2333891c2675d4ef1b";
  };

  propagatedBuildInputs = [ docopt netifaces ];

  meta = with stdenv.lib; {
    description = "Control Onkyo receivers over ethernet";
    homepage = https://github.com/miracle2k/onkyo-eiscp;
    license = licenses.mit;
    maintainers = with maintainers; [ peterhoeg ];
  };
}