python3Packages.pyatv: 0.7.6 -> 0.7.7 (#116267)

This commit is contained in:
Fabian Affolter 2021-03-16 22:37:12 +01:00 committed by GitHub
parent 3d703d6307
commit ccb87c7eef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,55 +1,58 @@
{ lib, buildPythonPackage
{ lib
, buildPythonPackage
, aiohttp
, aiozeroconf
, asynctest
, cryptography
, deepdiff
, fetchFromGitHub
, netifaces
, protobuf
, pytest
, pytest-aiohttp
, pytest-asyncio
, pytestrunner
, pytest-runner
, pytest-timeout
, pytestCheckHook
, srptools
, zeroconf
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pyatv";
version = "0.7.6";
version = "0.7.7";
src = fetchFromGitHub {
owner = "postlund";
repo = pname;
rev = "v${version}";
sha256 = "1lahv6f97fizgh5b2w5yz9455l8ygn99rslhiygkgjywi2flx3p3";
sha256 = "sha256-dPnh8XZN7ZVR2rYNnj7GSYXW5I2GNQwD/KRDTgs2AtI=";
};
nativeBuildInputs = [ pytestrunner];
nativeBuildInputs = [ pytest-runner];
propagatedBuildInputs = [
aiozeroconf
srptools
aiohttp
protobuf
aiozeroconf
cryptography
netifaces
protobuf
srptools
zeroconf
];
checkInputs = [
deepdiff
pytest
pytest-aiohttp
pytest-asyncio
pytest-timeout
pytestCheckHook
];
__darwinAllowLocalNetworking = true;
pythonImportsCheck = [ "pyatv" ];
meta = with lib; {
description = "A python client library for the Apple TV";
description = "Python client library for the Apple TV";
homepage = "https://github.com/postlund/pyatv";
license = licenses.mit;
maintainers = with maintainers; [ elseym ];