New package: py-fastdownload (#28150)

* [py-fastdownload] created template

* [py-fastdownload]

- added homepage
- added description
- added dependencies
- removed fixmes
This commit is contained in:
Jen Herting 2022-01-04 16:14:59 -05:00 committed by GitHub
parent e43795de28
commit cbe47f2066
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,23 @@
# Copyright 2013-2021 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 import *
class PyFastdownload(PythonPackage):
"""If you have datasets or other archives that you want to
make available to your users, and ensure they always have
the latest versions and that they are downloaded correctly,
fastdownload can help."""
homepage = "https://github.com/fastai/fastdownload/tree/master/"
pypi = "fastdownload/fastdownload-0.0.5.tar.gz"
version('0.0.5', sha256='64e67af30690fa98ae1c8a1b52495769842f723565239a5430208ad05585af18')
depends_on('python@3.6:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-fastprogress', type=('build', 'run'))
depends_on('py-fastcore@1.3.26:', type=('build', 'run'))