diff --git a/dev-python/pynacl/Manifest b/dev-python/pynacl/Manifest new file mode 100644 index 0000000000000..c02775c4bd103 --- /dev/null +++ b/dev-python/pynacl/Manifest @@ -0,0 +1 @@ +DIST pynacl-1.0.1.tar.gz 2710876 SHA256 d21d7a7358a85fb9b9ddadfbd1176c40fe199334fe2202881255e77f6d3773f4 SHA512 71731f26b5f262b31dac20313377e91f5668c6012f30ab43da0c460af1c7e15d911ba082af54ce2dfd55fd920f8a48aa40a98650396d12dc906a61d487a0b14f WHIRLPOOL b83e6fee9ed1ec08b979cd9eacce8cfefa352f701d4b212e8a0f5fc5227c7369da1e4ae0973e421ea59f06d259dd6bd018fa3210dd36225befcbf605f77759d0 diff --git a/dev-python/pynacl/metadata.xml b/dev-python/pynacl/metadata.xml new file mode 100644 index 0000000000000..e564da6d90dfa --- /dev/null +++ b/dev-python/pynacl/metadata.xml @@ -0,0 +1,28 @@ + + + + + dol-sen@gentoo.org + Primary maintainer + + + klausman@gentoo.org + Primary maintainer + + + python@gentoo.org + Python + + + + cryptography-dev@python.org + The PyNaCl developers + + PyNaCl + + + PyNaCl is a Python binding to the Networking and Cryptography library, + a crypto library with the stated goal of improving usability, security + and speed. + + diff --git a/dev-python/pynacl/pynacl-1.0.1.ebuild b/dev-python/pynacl/pynacl-1.0.1.ebuild new file mode 100644 index 0000000000000..b184389ee7576 --- /dev/null +++ b/dev-python/pynacl/pynacl-1.0.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{3,4,5}) + +inherit distutils-r1 + +MY_PN="PyNaCl" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Python binding to the Networking and Cryptography (NaCl) library" +HOMEPAGE="https://github.com/pyca/pynacl/ https://pypi.python.org/pypi/PyNaCl/" +SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}] + >=dev-python/cffi-1.1.0[${PYTHON_USEDEP}] + dev-libs/libsodium:0/18 +" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( >=dev-python/pytest-2.6.4[${PYTHON_USEDEP}] ) +" + +S=${WORKDIR}/${MY_P}