mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 13:40:28 +03:00
60 lines
1.2 KiB
Nix
60 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildPythonPackage,
|
|
isPyPy,
|
|
setuptools,
|
|
setuptools-scm,
|
|
flask,
|
|
flask-caching,
|
|
zstandard,
|
|
brotli,
|
|
brotlicffi,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "1.17";
|
|
pname = "flask-compress";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "colour-science";
|
|
repo = "flask-compress";
|
|
tag = "v${version}";
|
|
hash = "sha256-87fjJxaS7eJbOkSUljnhqFIeahoS4L2tAOhmv4ryVUM=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
dependencies =
|
|
[
|
|
flask
|
|
zstandard
|
|
]
|
|
++ lib.optionals (!isPyPy) [ brotli ]
|
|
++ lib.optionals isPyPy [ brotlicffi ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
flask-caching
|
|
];
|
|
|
|
pythonImportsCheck = [ "flask_compress" ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail "setuptools_scm[toml]<8" "setuptools_scm"
|
|
'';
|
|
|
|
meta = {
|
|
description = "Compress responses in your Flask app with gzip, deflate or brotli";
|
|
homepage = "https://github.com/colour-science/flask-compress";
|
|
changelog = "https://github.com/colour-science/flask-compress/blob/v${version}/CHANGELOG.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ nickcao ];
|
|
};
|
|
}
|