{ lib , aiohttp , buildPythonPackage , fetchFromGitHub , pythonOlder , yarl }: buildPythonPackage rec { pname = "aiotractive"; version = "0.5.5"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "zhulik"; repo = pname; rev = "v${version}"; sha256 = "sha256-VCwIAeSAN4tMwB8TXN/ukrws0qYv/jHHeEu++m56AHA="; }; propagatedBuildInputs = [ aiohttp yarl ]; # Project has no tests doCheck = false; pythonImportsCheck = [ "aiotractive" ]; meta = with lib; { description = "Python client for the Tractive REST API"; homepage = "https://github.com/zhulik/aiotractive"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }