python312Packages.flask-cors: 5.0.0 -> 5.0.1 (#403441)

This commit is contained in:
OTABI Tomoya
2025-05-10 19:53:32 +09:00
committed by GitHub
@@ -3,7 +3,7 @@
fetchFromGitHub,
buildPythonPackage,
flask,
packaging,
werkzeug,
pytestCheckHook,
setuptools,
@@ -14,34 +14,38 @@
buildPythonPackage rec {
pname = "flask-cors";
version = "5.0.0";
version = "5.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "corydolphin";
repo = "flask-cors";
tag = version;
hash = "sha256-DbTeq18CLuwj8lzQnpyPMEfxgR97XlF0s37wkTYd4O4=";
hash = "sha256-UVMZGdUpEKx5w85sSe8wSzjNYjsKPdbyBX7/QHJ3cyQ=";
};
nativeBuildInputs = [ setuptools ];
build-system = [
setuptools
];
propagatedBuildInputs = [ flask ];
dependencies = [
flask
werkzeug
];
nativeCheckInputs = [
pytestCheckHook
packaging
];
passthru.tests = {
inherit aiobotocore moto;
};
meta = with lib; {
meta = {
description = "Flask extension adding a decorator for CORS support";
homepage = "https://github.com/corydolphin/flask-cors";
changelog = "https://github.com/corydolphin/flask-cors/releases/tag/${src.tag}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ nickcao ];
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ nickcao ];
};
}