File: control

package info (click to toggle)
django-picklefield 3.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 172 kB
  • sloc: python: 197; makefile: 20
file content (40 lines) | stat: -rw-r--r-- 1,420 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
39
40
Source: django-picklefield
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders:
 Michael Fladischer <fladi@debian.org>,
 Thomas Goirand <zigo@debian.org>,
Build-Depends:
 debhelper-compat (= 13),
 dh-python,
 python3-all,
 python3-django,
 python3-setuptools,
 python3-six,
Standards-Version: 4.5.0
Homepage: https://github.com/gintas/django-picklefield
Vcs-Git: https://salsa.debian.org/python-team/modules/django-picklefield.git
Vcs-Browser: https://salsa.debian.org/python-team/modules/django-picklefield
Testsuite: autopkgtest-pkg-python
Rules-Requires-Root: no

Package: python3-django-picklefield
Architecture: all
Depends:
 python3-django,
 python3-six,
 ${misc:Depends},
 ${python3:Depends},
Description: Pickled object field for Django (Python3 version)
 django-picklefield provides an implementation of a pickled object field
 for the Django framework. Such fields can contain any picklable objects.
 .
 It is useful for storing just about anything in the database when there
 isn't a 'proper' field for the job.
 PickledObjectField is database-agnostic, and should work with any database
 backend you can throw at it. You can pass in any Python object and it will
 automatically be converted behind the scenes. You never have to manually
 pickle or unpickle anything.
 .
 This package contains the Python 3 version of the library.