Source: python-django-pgtransaction
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders:
 Colin Watson <cjwatson@debian.org>,
Build-Depends:
 debhelper-compat (= 13),
 dh-sequence-python3,
 pybuild-plugin-pyproject,
 python3-all,
 python3-poetry-core (>= 1.9.0),
Standards-Version: 4.7.2
Homepage: https://github.com/AmbitionEng/django-pgtransaction
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-django-pgtransaction
Vcs-Git: https://salsa.debian.org/python-team/packages/python-django-pgtransaction.git
X-Style: black

Package: python3-django-pgtransaction
Architecture: all
Depends:
 python3-psycopg | python3-psycopg2,
 ${misc:Depends},
 ${python3:Depends},
Description: PostgreSQL isolation level control for Django transactions
 django-pgtransaction offers a drop-in replacement for the default
 django.db.transaction module which, when used on top of a PostgreSQL
 database, extends the functionality of that module with
 Postgres-specific features.
 .
 At present, django-pgtransaction offers an extension of the
 django.db.transaction.atomic context manager/decorator which allows one
 to dynamically set transaction characteristics including:
 .
  * Isolation level
  * Read mode (READ WRITE/READ ONLY)
  * Deferrability (DEFERRABLE/NOT DEFERRABLE)
  * Retry policy for Postgres locking exceptions
