commit: eada628c39c5c56447fab296d318155f957bc416
Author: Horea Christian <horea.christ <AT> yandex <DOT> com>
AuthorDate: Tue Jul 31 18:36:39 2018 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Tue Jul 31 18:36:39 2018 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=eada628c
sci-libs/pydicom: version bump
Package-Manager: Portage-2.3.44, Repoman-2.3.10
sci-libs/pydicom/pydicom-1.1.0.ebuild | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/sci-libs/pydicom/pydicom-1.1.0.ebuild
b/sci-libs/pydicom/pydicom-1.1.0.ebuild
new file mode 100644
index 000000000..0c2e1b15e
--- /dev/null
+++ b/sci-libs/pydicom/pydicom-1.1.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit distutils-r1
+
+DESCRIPTION="A pure python package for parsing DICOM files"
+HOMEPAGE="http://www.pydicom.org/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+# Upstream bug: https://github.com/pydicom/pydicom/issues/663
+RESTRICT="test"
+
+DEPEND="test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+
+python_test() {
+ distutils-r1_install_for_testing
+ py.test --cov=pydicom -r sx --pyargs pydicom --verbose || die
+}