9 buildPythonPackage rec {
12 format = "setuptools";
13 disabled = pythonOlder "3.6";
15 src = fetchFromGitHub {
16 owner = "dcnielsen90";
17 repo = "python-bravia-tv";
19 hash = "sha256-g47bDd5bZl0jad3o6T1jJLcnZj8nx944kz3Vxv8gD2U=";
22 propagatedBuildInputs = [ requests ];
24 # Package does not include tests
27 pythonImportsCheck = [ "bravia_tv" ];
30 homepage = "https://github.com/dcnielsen90/python-bravia-tv";
31 description = "Python library for Sony Bravia TV remote control";
32 license = licenses.mit;
33 maintainers = with maintainers; [ colemickens ];