34 lines
753 B
Nix
34 lines
753 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, isPy27, requests, netifaces
|
|
, pytestCheckHook, testtools, requests-mock }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "denonavr";
|
|
version = "0.9.10";
|
|
disabled = isPy27;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "scarface-4711";
|
|
repo = "denonavr";
|
|
rev = version;
|
|
sha256 = "sha256-3ap8F3ayBTpaR98md+gT0+hkIWlFBNxStTGWT5AL//A=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
netifaces
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
testtools
|
|
requests-mock
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/scarface-4711/denonavr";
|
|
description = "Automation Library for Denon AVR receivers.";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ colemickens ];
|
|
};
|
|
}
|