python3Packages.flask-compress: 1.17 -> 1.23

https://github.com/colour-science/flask-compress/blob/v1.23/CHANGELOG.md

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2026-02-01 16:43:52 +01:00
parent d873acee96
commit 01b150ee28
@@ -5,6 +5,7 @@
isPyPy,
setuptools,
setuptools-scm,
backports-zstd,
flask,
flask-caching,
zstandard,
@@ -14,7 +15,7 @@
}:
buildPythonPackage rec {
version = "1.17";
version = "1.23";
pname = "flask-compress";
pyproject = true;
@@ -22,7 +23,7 @@ buildPythonPackage rec {
owner = "colour-science";
repo = "flask-compress";
tag = "v${version}";
hash = "sha256-87fjJxaS7eJbOkSUljnhqFIeahoS4L2tAOhmv4ryVUM=";
hash = "sha256-iKZfwSFvNrG/ApbqBuDgoUHz296nr+ZMrAX97pMgNTQ=";
};
build-system = [
@@ -31,8 +32,8 @@ buildPythonPackage rec {
];
dependencies = [
backports-zstd
flask
zstandard
]
++ lib.optionals (!isPyPy) [ brotli ]
++ lib.optionals isPyPy [ brotlicffi ];
@@ -52,7 +53,7 @@ buildPythonPackage rec {
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";
changelog = "https://github.com/colour-science/flask-compress/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ nickcao ];
};