py-ncbi-genome-download: new package (#33511)

* py-ncbi-genome-download: new package

* fixed style
This commit is contained in:
Luke Diorio-Toth 2022-10-27 11:51:36 -05:00 committed by GitHub
parent 34d55af55d
commit 57226a870b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,21 @@
# 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 PyNcbiGenomeDownload(PythonPackage):
"""Scripts to download genomes from the NCBI FTP servers"""
homepage = "https://github.com/kblin/ncbi-genome-download/"
pypi = "ncbi-genome-download/ncbi-genome-download-0.3.1.tar.gz"
version("0.3.1", sha256="74675e94f184b8d80429641b27ed6d46ed81028d95156337de6d09f8dd739c6e")
depends_on("py-setuptools", type="build")
depends_on("py-appdirs", type=("build", "run"))
depends_on("py-requests@2.4.3:", type=("build", "run"))
depends_on("py-tqdm", type=("build", "run"))