spack/var/spack/repos/builtin/packages/py-datalad/package.py
Tom Scogland 18c2f1a57a
refactor: packages import spack.package explicitly (#30404)
Explicitly import package utilities in all packages, and corresponding fallout.

This includes:

* rename `spack.package` to `spack.package_base`
* rename `spack.pkgkit` to `spack.package`
* update all packages in builtin, builtin_mock and tutorials to include `from spack.package import *`
* update spack style
  * ensure packages include the import
  * automatically add the new import and remove any/all imports of `spack` and `spack.pkgkit`
    from packages when using `--fix`
  * add support for type-checking packages with mypy when SPACK_MYPY_CHECK_PACKAGES
    is set in the environment
* fix all type checking errors in packages in spack upstream
* update spack create to include the new imports
* update spack repo to inject the new import, injection persists to allow for a deprecation period

Original message below:
 
As requested @adamjstewart, update all packages to use pkgkit.  I ended up using isort to do this,
so repro is easy:

```console
$ isort -a 'from spack.pkgkit import *' --rm 'spack' ./var/spack/repos/builtin/packages/*/package.py
$ spack style --fix
```

There were several line spacing fixups caused either by space manipulation in isort or by packages
that haven't been touched since we added requirements, but there are no functional changes in here.

* [x] add config to isort to make sure this is maintained going forward
2022-05-28 12:55:44 -04:00

124 lines
5.5 KiB
Python

# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack.package import *
class PyDatalad(PythonPackage):
"""data distribution geared toward scientific datasets.
DataLad makes data management and data distribution more accessible. To do
that, it stands on the shoulders of Git and Git-annex to deliver a
decentralized system for data exchange. This includes automated ingestion
of data from online portals and exposing it in readily usable form as
Git(-annex) repositories, so-called datasets. The actual data storage and
permission management, however, remains with the original data providers.
"""
homepage = "https://datalad.org/"
pypi = "datalad/datalad-0.14.6.tar.gz"
version('0.15.5', sha256='e569494a5bd4e0f100013ec30529d5ac02e78ba476a75fc533c0d89c0e5473bc')
version('0.15.3', sha256='44f8c5b3960c6d9848aeecd868c82330c49689a21e975597df5b112dc2e5c9f0')
version('0.15.2', sha256='1a878cf521270f089ee1f50339e71cfd7eed41e708d895a12d5c483a9b59991b')
version('0.15.1', sha256='0a905b3c3419786ae85b61a7aee34b0fc9eecd814f38408f2767ae7122b57a8b')
version('0.14.6', sha256='149b25a00da133a81be3cbdc041a1985418f0918fa5961ba979e23b5b3c08c63')
variant('downloaders-extra', default=False, description="Enable extra downloaders support")
variant('misc', default=False, description="Enable misc")
variant('tests', default=False, description="Enable tests")
variant('metadata-extra', default=False, description="Enable extra metadata support")
variant('duecredit', default=False, description="Enable duecredit support")
variant('full', default=False, description="Enable support for all available variants")
depends_on('python@3.6:', type=('build', 'run'))
depends_on('py-setuptools@40.8.0:', type='build')
depends_on('git', type=('build', 'run'))
depends_on('git-annex', type=('build', 'run'))
# core
depends_on('py-appdirs', type=('build', 'run'))
depends_on('py-chardet@3.0.4:', type=('build', 'run'))
depends_on('py-distro', type=('build', 'run'), when='^python@3.8:')
depends_on('py-importlib-metadata', type=('build', 'run'), when='^python@:3.7')
depends_on('py-iso8601', type=('build', 'run'))
depends_on('py-humanize', type=('build', 'run'))
depends_on('py-fasteners@0.14:', type=('build', 'run'))
depends_on('py-packaging', type=('build', 'run'), when='@0.15.4:')
depends_on('py-patool@1.7:', type=('build', 'run'))
depends_on('py-tqdm', type=('build', 'run'))
depends_on('py-wrapt', type=('build', 'run'))
depends_on('py-annexremote', type=('build', 'run'))
# additional dependency on 'colorama' if platform_system=="Windows"'
# downloaders
depends_on('py-boto', type=('build', 'run'))
depends_on('py-keyring@8.0:', type=('build', 'run'))
depends_on('py-keyrings-alt', type=('build', 'run'))
depends_on('py-msgpack', type=('build', 'run'))
depends_on('py-requests@1.2:', type=('build', 'run'))
# publish
depends_on('py-pygithub', type=('build', 'run'))
depends_on('py-python-gitlab', type=('build', 'run'), when='@0.14.7:')
depends_on('py-jsmin', type=('build', 'run'), when='@:0.14')
# metadata
depends_on('py-simplejson', type=('build', 'run'))
depends_on('py-whoosh', type=('build', 'run'))
with when('+downloaders-extra'):
depends_on('py-requests-ftp', type=('build', 'run'))
with when('+misc'):
depends_on('py-argcomplete', type=('build', 'run'), when='@0.14.7:')
depends_on('py-pyperclip', type=('build', 'run'))
depends_on('py-python-dateutil', type=('build', 'run'))
with when('+tests'):
depends_on('py-beautifulsoup4', type=('build', 'run'))
depends_on('py-httpretty@0.9.4:', type=('build', 'run'))
depends_on('py-nose@1.3.4:', type=('build', 'run'))
depends_on('py-vcrpy', type=('build', 'run'))
with when('+metadata-extra'):
depends_on('py-pyyaml', type=('build', 'run'))
depends_on('py-mutagen@1.36:', type=('build', 'run'))
depends_on('py-exifread', type=('build', 'run'))
depends_on('py-python-xmp-toolkit', type=('build', 'run'))
depends_on('pil', type=('build', 'run'))
with when('+duecredit'):
depends_on('py-duecredit', type=('build', 'run'))
with when('+full'):
# all the above
# downloaders-extra
depends_on('py-requests-ftp', type=('build', 'run'))
# misc
depends_on('py-argcomplete', type=('build', 'run'), when='@0.14.7:')
depends_on('py-pyperclip', type=('build', 'run'))
depends_on('py-python-dateutil', type=('build', 'run'))
# tests
depends_on('py-beautifulsoup4', type=('build', 'run'))
depends_on('py-httpretty@0.9.4:', type=('build', 'run'))
depends_on('py-nose@1.3.4:', type=('build', 'run'))
depends_on('py-vcrpy', type=('build', 'run'))
# metadata-extra
depends_on('py-pyyaml', type=('build', 'run'))
depends_on('py-mutagen@1.36:', type=('build', 'run'))
depends_on('py-exifread', type=('build', 'run'))
depends_on('py-python-xmp-toolkit', type=('build', 'run'))
depends_on('pil', type=('build', 'run'))
# duecredit
depends_on('py-duecredit', type=('build', 'run'))
install_time_test_callbacks = ['test', 'installtest']
def installtest(self):
datalad = Executable(self.prefix.bin.datalad)
datalad('wtf')