{ lib , buildPythonPackage , fetchFromGitHub , pythonOlder # build inputs , starlette , brotli # check inputs , requests , mypy , brotlipy }: let pname = "brotli-asgi"; version = "1.4.0"; in buildPythonPackage { inherit pname version; format = "setuptools"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "fullonic"; repo = pname; rev = "v${version}"; hash = "sha256-hQ6CSXnAoUSaKUSmE+2GHZemkFqd8Dc5+OvcUD7/r5Y="; }; propagatedBuildInputs = [ starlette brotli ]; pythonImportsCheck = [ "brotli_asgi" ]; nativeCheckInputs = [ requests mypy brotlipy ]; meta = with lib; { description = "A compression AGSI middleware using brotli"; homepage = "https://github.com/fullonic/brotli-asgi"; license = licenses.mit; maintainers = with maintainers; [ happysalada ]; }; }