[NEW] devel/py-frozendict: Immutable dictionary implementation for Python

frozendict is an immutable wrapper around dictionaries that implements the
complete mapping interface. It can be used as a drop-in replacement for
dictionaries where immutability is desired.

WWW: https://github.com/slezica/python-frozendict

PR:		205914
Submitted by:	Brendan Molloy <brendan+freebsd@bbqsrc.net>
This commit is contained in:
Kubilay Kocak 2016-01-08 04:48:19 +00:00
parent 5de147f82f
commit 962e01c241
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=405521
4 changed files with 29 additions and 0 deletions

View File

@ -4040,6 +4040,7 @@
SUBDIR += py-freenas.dispatcher
SUBDIR += py-freenas.utils
SUBDIR += py-freezegun
SUBDIR += py-frozendict
SUBDIR += py-fs
SUBDIR += py-fsm
SUBDIR += py-fudge

View File

@ -0,0 +1,21 @@
# Created by: Brendan Molloy <brendan+freebsd@bbqsrc.net>
# $FreeBSD$
PORTNAME= frozendict
PORTVERSION= 0.5
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= brendan+freebsd@bbqsrc.net
COMMENT= Immutable dictionary implementation for Python
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USES= python
USE_PYTHON= autoplist distutils
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (frozendict-0.5.tar.gz) = 560c424af4913dad5aa1f6933e78837e597c7000dda2e3624a6e37b5a0799354
SIZE (frozendict-0.5.tar.gz) = 2167

View File

@ -0,0 +1,5 @@
frozendict is an immutable wrapper around dictionaries that implements the
complete mapping interface. It can be used as a drop-in replacement for
dictionaries where immutability is desired.
WWW: https://github.com/slezica/python-frozendict