diff options
author | Zac Medico <zmedico@gentoo.org> | 2018-04-11 16:32:02 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2018-04-11 17:19:17 -0700 |
commit | 26b0b115c78bfcae316c466a6a5a0f5ecc08112f (patch) | |
tree | 05d92997733d8765630728d6fdf9ef5c010f09ed /dev-python/marshmallow/marshmallow-3.0.0_beta8.ebuild | |
parent | net-misc/openssh: Fix X.509 support (diff) | |
download | gentoo-26b0b115c78bfcae316c466a6a5a0f5ecc08112f.tar.gz gentoo-26b0b115c78bfcae316c466a6a5a0f5ecc08112f.tar.bz2 gentoo-26b0b115c78bfcae316c466a6a5a0f5ecc08112f.zip |
dev-python/marshmallow: new package
Package-Manager: Portage-2.3.28, Repoman-2.3.9
Diffstat (limited to 'dev-python/marshmallow/marshmallow-3.0.0_beta8.ebuild')
-rw-r--r-- | dev-python/marshmallow/marshmallow-3.0.0_beta8.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-python/marshmallow/marshmallow-3.0.0_beta8.ebuild b/dev-python/marshmallow/marshmallow-3.0.0_beta8.ebuild new file mode 100644 index 000000000000..630eff899b7f --- /dev/null +++ b/dev-python/marshmallow/marshmallow-3.0.0_beta8.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +inherit distutils-r1 + +MY_P=${P/_beta/b} +DESCRIPTION="A lightweight library for converting complex datatypes to and from native Python datatypes." +HOMEPAGE="https://github.com/marshmallow-code/marshmallow/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + dev-python/python-dateutil[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] )" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + rm tests/test_py3/test_utils.py || die + distutils-r1_src_prepare +} + +python_test() { + py.test -v || die "tests failed under ${EPYTHON}" +} |