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

22 lines
549 B
Nix
Raw Normal View History

2018-02-26 10:14:27 +00:00
{ stdenv, buildPythonPackage, fetchPypi
, docopt, netifaces }:
buildPythonPackage rec {
pname = "onkyo-eiscp";
2018-05-09 14:48:57 +00:00
version = "1.2.5";
2018-02-26 10:14:27 +00:00
src = fetchPypi {
inherit pname version;
2018-05-09 14:48:57 +00:00
sha256 = "cfcca6bc6c36992095f5aa4a15870a3ef89b9a26d991da2333891c2675d4ef1b";
2018-02-26 10:14:27 +00: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 ];
};
}