File: control

package info (click to toggle)
python-django-modelcluster 6.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 508 kB
  • sloc: python: 5,026; sh: 6; makefile: 5
file content (38 lines) | stat: -rw-r--r-- 1,378 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Source: python-django-modelcluster
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders:
 Michael Fladischer <fladi@debian.org>,
Build-Depends:
 debhelper-compat (= 13),
 dh-sequence-python3,
 pybuild-plugin-pyproject,
 python3-all,
 python3-django,
 python3-django-taggit,
 python3-pytest,
 python3-pytest-django,
 python3-setuptools,
Standards-Version: 4.7.0
Homepage: https://github.com/wagtail/django-modelcluster/
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-django-modelcluster
Vcs-Git: https://salsa.debian.org/python-team/packages/python-django-modelcluster.git
Rules-Requires-Root: no

Package: python3-django-modelcluster
Architecture: all
Depends:
 python3-django,
 python3-django-taggit,
 ${misc:Depends},
 ${python3:Depends},
Description: clusters of models as a single unit (Python3 version)
 django-modelcluster extends Django's foreign key relations to make it possible
 to work with a 'cluster' of related objects, without necessarily holding them
 in the database. It introduces a new type of relation, ParentalKey, where the
 related models are stored locally to the 'parent' model until the parent is
 explicitly saved. Up to that point, the related models can still be accessed
 through a subset of the QuerySet API.
 .
 This package contains the Python 3 version of the library.