fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
52 lines
897 B
Nix
52 lines
897 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 ];
|
|
};
|
|
}
|