blob: 7599402fe8ba5b28f87cddb7d0f2e4be37c9e8aa (
about) (
plain)
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
|
# SPDX-License-Identifier: CC0-1.0
# Immutables debian/control file
#
# Copyright (C) 2021,2022 Wojtek Kosior
#
# Available under the terms of Creative Commons Zero v1.0 Universal.
Source: python-immutables
Maintainer: W. Kosior <koszko@koszko.org>
Section: devel
Priority: optional
Standards-Version: 4.3.0
Build-Depends: debhelper (>= 11), dh-python, python3-all-dev (>= 3.6),
python3-setuptools (>= 45),
# also add test dependencies
python3-pytest, python3-pytest-flake8, python3-mypy
Package: python3-immutables
Architecture: all
Depends: ${python3:Depends}, ${misc:Depends}
X-Python3-Version: >= 3.6
Description: an immutable mapping type for Python
This library provides an immutable alternative to Python's native 'dict'.
The data structure used if Hash Array Mapped Trie (HAMT) which is also utilized
by some functional languages.
|