diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-06-14 13:56:56 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-06-14 14:04:10 +0200 |
commit | 5e390682d8c1063d4a1a3be0c69b692f56e97380 (patch) | |
tree | 306da3aee93202e4ee22f0c2c5bcbb0e8dc8e472 /dev-python/fsspec/fsspec-0.7.4.ebuild | |
parent | sci-mathematics/why3-for-spark: fix broken symlink (diff) | |
download | gentoo-5e390682d8c1063d4a1a3be0c69b692f56e97380.tar.gz gentoo-5e390682d8c1063d4a1a3be0c69b692f56e97380.tar.bz2 gentoo-5e390682d8c1063d4a1a3be0c69b692f56e97380.zip |
dev-python/fsspec: New package, test-dep of s3fs
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/fsspec/fsspec-0.7.4.ebuild')
-rw-r--r-- | dev-python/fsspec/fsspec-0.7.4.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/fsspec/fsspec-0.7.4.ebuild b/dev-python/fsspec/fsspec-0.7.4.ebuild new file mode 100644 index 000000000000..b3b8bc1fa87c --- /dev/null +++ b/dev-python/fsspec/fsspec-0.7.4.ebuild @@ -0,0 +1,33 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) +inherit distutils-r1 + +MY_P=filesystem_spec-${PV} + +DESCRIPTION="A specification that python filesystems should adhere to" +HOMEPAGE="https://github.com/intake/filesystem_spec/ + https://pypi.org/project/fsspec/" +SRC_URI=" + https://github.com/intake/filesystem_spec/archive/${PV}.tar.gz + -> ${MY_P}.tar.gz" +S=${WORKDIR}/${MY_P} + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +distutils_enable_tests pytest + +BDEPEND=" + dev-python/versioneer[${PYTHON_USEDEP}] + test? ( dev-vcs/git )" + +src_test() { + git config --global user.email "you@example.com" || die + git config --global user.name "Your Name" || die + distutils-r1_src_test +} |