1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

[NEW PORT] security/py-cryptography: Cryptographic recipes and primitives to Python developers

cryptography is a package designed to expose cryptographic recipes and
primitives to Python developers. Our goal is for it to be your "cryptographic
standard library". It supports Python 2.6-2.7, Python 3.2+, and PyPy.

cryptography includes both high level recipes, and low level interfaces to
common cryptographic algorithms such as symmetric ciphers, message digests
and key derivation functions.

WWW: http://github.com/pyca/cryptography/
This commit is contained in:
Kubilay Kocak 2014-02-23 13:47:04 +00:00
parent 4e09685164
commit 48e1e74a58
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=345722
4 changed files with 34 additions and 0 deletions

View File

@ -756,6 +756,7 @@
SUBDIR += py-clamav
SUBDIR += py-cracklib
SUBDIR += py-cryptkit
SUBDIR += py-cryptography
SUBDIR += py-cybox
SUBDIR += py-ecdsa
SUBDIR += py-ed25519ll

View File

@ -0,0 +1,22 @@
# Created by: Kubilay Kocak <koobs@FreeBSD.org>
# $FreeBSD$
PORTNAME= cryptography
PORTVERSION= 0.2.1
CATEGORIES= security python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= koobs@FreeBSD.org
COMMENT= Expose cryptographic recipes and primitives to Python developers
LICENSE= APACHE20
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=0.8:${PORTSDIR}/devel/py-cffi \
${PYTHON_PKGNAMEPREFIX}six>=1.4.1:${PORTSDIR}/devel/py-six
USE_PYTHON= yes
USE_PYDISTUTILS= yes
PYDISTUTILS_AUTOPLIST= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (cryptography-0.2.1.tar.gz) = 5b4b93a9841364396ac75ee3f0f4550752821df5a89078c1e16a716339ba39a3
SIZE (cryptography-0.2.1.tar.gz) = 13772304

View File

@ -0,0 +1,9 @@
cryptography is a package designed to expose cryptographic recipes and
primitives to Python developers. Our goal is for it to be your "cryptographic
standard library". It supports Python 2.6-2.7, Python 3.2+, and PyPy.
cryptography includes both high level recipes, and low level interfaces to
common cryptographic algorithms such as symmetric ciphers, message digests
and key derivation functions.
WWW: http://github.com/pyca/cryptography/