python-flasgger 0.9.7.2~dev2+dfsg-1 source package in Ubuntu

Changelog

python-flasgger (0.9.7.2~dev2+dfsg-1) unstable; urgency=medium

  * Team upload.
  * New upstream version 0.9.7.2~dev2+dfsg. (Closes: #1056450, #1056520,
    #1058121, #1058156, #1056409, #1056536, #1056448)
  * Watch: unbreak.
  * Add d/gbp.conf.
  * Copyright:
    + correct upstream years to match the included LICENSE file.
    + add myself for the packaging.
  * Control:
    + set Homepage to actual upstream project, not some fork.
    + order build-deps; add python3-pytest.
    + bump Standards-Version to 4.6.2 (from 4.6.1; no further changes).
    + enable autopkgtest via Testsuite: autopkgtest-pkg-pybuild.
    + remove unnecessary hardcoded python deps from the binary pkg.
  * Rules:
    + switch overrides to execute_after.
    + ignore test_examples, needs unavailable flex module.
  * Patches: refresh 02.

 -- Jeroen Ploemen <email address hidden>  Tue, 12 Dec 2023 11:43:09 +0000

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-flasgger_0.9.7.2~dev2+dfsg-1.dsc 2.2 KiB d04025cc15b454abb2f31475aba88b4ff3a265a33509bdef09938e29a91faea2
python-flasgger_0.9.7.2~dev2+dfsg.orig.tar.xz 1.6 MiB 8fecf63d5e5c34981f2a91f3c4666620ec642d4f5494cc89e348b1db7d0d7297
python-flasgger_0.9.7.2~dev2+dfsg-1.debian.tar.xz 2.9 MiB b39f283adc2715a76146eb40df6424ad74122d7c3bd36fda34be1be12620ba66

No changes file available.

Binary packages built by this source

python3-flasgger: Extract swagger specs from your flask project

 Flasgger is a Flask extension to extract OpenAPI-Specification from all
 Flask views registered in your API.
 It also comes with SwaggerUI embedded so you can access
 http://localhost:5000/apidocs and visualize and interact
 with your API resources.
 It also provides validation of the incoming data, using the same specification
 it can validates if the data received as a POST, PUT, PATCH is valid against
 the schema defined using YAML, Python dictionaries or Marshmallow Schemas.
 Flasgger can work with simple function views or MethodViews using docstring
 as specification, or using @swag_from decorator to get specification from
 YAML or dict and also provides SwaggerView which can use
 Marshmallow Schemas as specification.