nixpkgs/pkgs/development/python-modules/pyatv/default.nix

58 lines
1010 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage
2020-05-27 18:24:11 +00:00
, aiohttp
, aiozeroconf
, asynctest
, cryptography
, deepdiff
, netifaces
, protobuf
, pytest
, pytest-aiohttp
, pytest-asyncio
, pytestrunner
, srptools
, 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";
src = fetchFromGitHub {
owner = "postlund";
repo = pname;
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
zeroconf
2020-05-27 18:24:11 +00:00
];
checkInputs = [
deepdiff
pytest
pytest-aiohttp
pytest-asyncio
pytestCheckHook
2020-05-27 18:24:11 +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";
homepage = "https://github.com/postlund/pyatv";
2018-11-22 22:16:50 +00:00
license = licenses.mit;
maintainers = with maintainers; [ elseym ];
};
}