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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "761abb16c654a1136763b927d094174d41f282809e44ea32cd47e199dd79d9c9";
  };

  propagatedBuildInputs = [ docopt netifaces ];

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