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
1 changed files with 17 additions and 14 deletions

View File

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