commit: 59a1c8b115c1234952277fe544ac2ad2b0b18d82
Author: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 31 12:53:49 2016 +0000
Commit: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
CommitDate: Wed Aug 31 12:53:49 2016 +0000
URL: https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=59a1c8b1
dev-python/marshmallow: initial commit, ebuild by me
dev-python/marshmallow/Manifest | 1 +
dev-python/marshmallow/marshmallow-2.9.1.ebuild | 28 +++++++++++++++++++++++++
2 files changed, 29 insertions(+)
diff --git a/dev-python/marshmallow/Manifest b/dev-python/marshmallow/Manifest
new file mode 100644
index 0000000..2737d9b
--- /dev/null
+++ b/dev-python/marshmallow/Manifest
@@ -0,0 +1 @@
+DIST marshmallow-2.9.1.tar.gz 133475 SHA256
dcee3529deefb037e58d203d81f3629194a1777f3420429e8e26cc070df5bc10 SHA512
06444ae30088f66c6dbcdd5621b93d1215d3084109d10efee08d1990956a9e0ac03e251e44a04e217f55e4ec6bdd85fed749e59a9e63e29b7b089685af8d2cf8
WHIRLPOOL
80edd349e931c9e7aee18db65d56ba3001ea40348d2c056412e2935decf9d7c37c07082bd9a6198aa3a900d2f36aeb0b5a8e9f6cb12d00f55c18ed7e961513ea
diff --git a/dev-python/marshmallow/marshmallow-2.9.1.ebuild
b/dev-python/marshmallow/marshmallow-2.9.1.ebuild
new file mode 100644
index 0000000..2ee2374
--- /dev/null
+++ b/dev-python/marshmallow/marshmallow-2.9.1.ebuild
@@ -0,0 +1,28 @@
+# 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} pypy )
+
+inherit distutils-r1 eutils
+
+DESCRIPTION="Library for converting complex objects to/from simple Python
datatypes"
+HOMEPAGE="https://github.com/marshmallow-code/marshmallow
https://pypi.python.org/pypi/marshmallow"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="dev-python/python-dateutil[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ test? ( dev-python/pytest[${PYTHON_USEDEP}]
+ dev-python/pytz[${PYTHON_USEDEP}]
+ dev-python/simplejson[${PYTHON_USEDEP}] )"
+
+python_test() {
+ py.test || die
+}