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

22 lines
549 B
Nix
Raw Normal View History

2018-02-26 11:14:27 +01:00
{ stdenv, buildPythonPackage, fetchPypi
, docopt, netifaces }:
buildPythonPackage rec {
pname = "onkyo-eiscp";
2019-10-16 11:43:10 +02:00
version = "1.2.7";
2018-02-26 11:14:27 +01:00
src = fetchPypi {
inherit pname version;
2019-10-16 11:43:10 +02:00
sha256 = "761abb16c654a1136763b927d094174d41f282809e44ea32cd47e199dd79d9c9";
2018-02-26 11:14:27 +01:00
};
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 ];
};
}