2020-10-14 11:36:03 +00:00
|
|
|
{ stdenv, buildPythonPackage
|
2020-05-27 18:24:11 +00:00
|
|
|
, aiohttp
|
|
|
|
, aiozeroconf
|
|
|
|
, asynctest
|
|
|
|
, cryptography
|
|
|
|
, deepdiff
|
|
|
|
, netifaces
|
|
|
|
, protobuf
|
|
|
|
, pytest
|
|
|
|
, pytest-aiohttp
|
|
|
|
, pytest-asyncio
|
|
|
|
, pytestrunner
|
|
|
|
, srptools
|
2020-10-14 11:36:03 +00:00
|
|
|
, zeroconf
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pytestCheckHook
|
2020-05-27 18:24:11 +00:00
|
|
|
}:
|
2018-11-22 22:16:50 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyatv";
|
2020-12-09 20:02:46 +00:00
|
|
|
version = "0.7.5";
|
2020-10-14 11:36:03 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "postlund";
|
|
|
|
repo = pname;
|
2020-10-14 11:36:03 +00:00
|
|
|
rev = "v${version}";
|
2020-12-09 20:02:46 +00:00
|
|
|
sha256 = "06qj6r9kcal2nimg8rpjfid8rnlz43l7hn0v9v1mpayjmv2fl8sp";
|
2018-11-22 22:16:50 +00:00
|
|
|
};
|
|
|
|
|
2020-05-27 18:24:11 +00:00
|
|
|
nativeBuildInputs = [ pytestrunner];
|
2018-11-22 22:16:50 +00:00
|
|
|
|
2020-05-27 18:24:11 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
aiozeroconf
|
|
|
|
srptools
|
|
|
|
aiohttp
|
|
|
|
protobuf
|
|
|
|
cryptography
|
|
|
|
netifaces
|
2020-10-14 11:36:03 +00:00
|
|
|
zeroconf
|
2020-05-27 18:24:11 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
deepdiff
|
|
|
|
pytest
|
|
|
|
pytest-aiohttp
|
|
|
|
pytest-asyncio
|
2020-10-14 11:36:03 +00:00
|
|
|
pytestCheckHook
|
2020-05-27 18:24:11 +00:00
|
|
|
];
|
|
|
|
|
2021-01-05 23:15:04 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2018-11-22 22:16:50 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A python client library for the Apple TV";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/postlund/pyatv";
|
2018-11-22 22:16:50 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ elseym ];
|
|
|
|
};
|
|
|
|
}
|