1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
50 lines
853 B
Nix
50 lines
853 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
# build inputs
|
|
starlette,
|
|
brotli,
|
|
# check inputs
|
|
httpx,
|
|
requests,
|
|
mypy,
|
|
brotlipy,
|
|
}:
|
|
let
|
|
pname = "brotli-asgi";
|
|
version = "1.6.0";
|
|
in
|
|
buildPythonPackage {
|
|
inherit pname version;
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fullonic";
|
|
repo = "brotli-asgi";
|
|
rev = "v${version}";
|
|
hash = "sha256-cF7A3mnkQmvtc9DgHiwqYEQQ6QagjoBGTmcBzUm6vvs=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
starlette
|
|
brotli
|
|
];
|
|
|
|
pythonImportsCheck = [ "brotli_asgi" ];
|
|
|
|
nativeCheckInputs = [
|
|
httpx
|
|
requests
|
|
mypy
|
|
brotlipy
|
|
];
|
|
|
|
meta = {
|
|
description = "Compression AGSI middleware using brotli";
|
|
homepage = "https://github.com/fullonic/brotli-asgi";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ happysalada ];
|
|
};
|
|
}
|