Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 24 lines 804 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, srptools, aiohttp, zeroconf 2, ed25519, cryptography, curve25519-donna, pytest, pytestrunner 3, netifaces, asynctest, virtualenv, toml, filelock, tox }: 4 5buildPythonPackage rec { 6 pname = "pyatv"; 7 version = "0.3.13"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "8fc1a903a9d666e4109127410d35a83458559a86bc0de3fe1ffb3f15d2d653b3"; 12 }; 13 14 propagatedBuildInputs = [ srptools aiohttp zeroconf ed25519 cryptography curve25519-donna tox ]; 15 16 checkInputs = [ pytest pytestrunner netifaces asynctest virtualenv toml filelock ]; 17 18 meta = with stdenv.lib; { 19 description = "A python client library for the Apple TV"; 20 homepage = https://github.com/postlund/pyatv; 21 license = licenses.mit; 22 maintainers = with maintainers; [ elseym ]; 23 }; 24}