flask 0.10.1-2 source package in Ubuntu

Changelog

flask (0.10.1-2) unstable; urgency=low


  * Add python3-flask binary package
  * Add python-blinker to Recommends (used in flask.signals)
  * Switch to pybuild buildsystem
  * Add fix_test_appcontext_signals and fix_test_json_key_sorting patches
    and enable tests at build time (patches taked from upstream repo)

 -- Piotr Ożarowski <email address hidden>  Thu, 08 Aug 2013 22:19:13 +0200

Upload details

Uploaded by:
Piotr Ożarowski
Uploaded to:
Sid
Original maintainer:
Piotr Ożarowski
Architectures:
all
Section:
python
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Saucy: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
flask_0.10.1-2.dsc 2.3 KiB 0c20652b0b96f7edd7e879ca202b6956c2cfe5ce351879859f8d40293a16225e
flask_0.10.1.orig.tar.gz 531.5 KiB 4c83829ff83d408b5e1d4995472265411d2c414112298f2eb4b359d9e4563373
flask_0.10.1-2.debian.tar.gz 4.3 KiB 00961e27542eb9220fdcb1438b62e2620f3cff1b9d1109018d7abc4eac74b2c5

Available diffs

No changes file available.

Binary packages built by this source

python-flask: micro web framework based on Werkzeug, Jinja2 and good intentions

 Flask is a micro web framework for Python based on Werkzeug, Jinja 2 and good
 intentions. A minimal Flask application looks like that:
 .
   from flask import Flask
   app = Flask(__name__)
 .
   @app.route("/")
   def hello():
       return "Hello World!"
 .
   if __name__ == '__main__':
       app.run()

python-flask-doc: No summary available for python-flask-doc in ubuntu saucy.

No description available for python-flask-doc in ubuntu saucy.

python3-flask: micro web framework based on Werkzeug, Jinja2 and good intentions

 Flask is a micro web framework for Python based on Werkzeug, Jinja 2 and good
 intentions. A minimal Flask application looks like that:
 .
   from flask import Flask
   app = Flask(__name__)
 .
   @app.route("/")
   def hello():
       return "Hello World!"
 .
   if __name__ == '__main__':
       app.run()