File: control

package info (click to toggle)
python-mergedict 1.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 92 kB
  • sloc: python: 176; makefile: 3
file content (24 lines) | stat: -rw-r--r-- 824 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Source: python-mergedict
Maintainer: IƱaki Malerba <inaki@malerba.space>
Section: python
Priority: optional
Standards-Version: 4.5.0
Rules-Requires-Root: no
Build-Depends: debhelper-compat (= 13),
 dh-python,
 python3-setuptools,
 python3-all
Vcs-Git: https://salsa.debian.org/debian/python-mergedict.git
Vcs-Browser: https://salsa.debian.org/debian/python-mergedict
Homepage: https://github.com/schettino72/mergedict

Package: python3-mergedict
Architecture: all
Depends: ${python3:Depends}, ${misc:Depends}
Description: Python dict with a merge() method
 A MergeDict is a dict with a merge() method. merge() is like
 dict.update(), but it can be subclassed to create custom
 "merge" operations based on the type of an item value.
 .
 Themergedict module comes with a ConfigDict that will
 extend/update lists/sets/dicts.