c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
51 lines
881 B
Nix
51 lines
881 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
# build inputs
|
|
, starlette
|
|
, brotli
|
|
# check inputs
|
|
, httpx
|
|
, 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 = [
|
|
httpx
|
|
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 ];
|
|
};
|
|
}
|