summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2021-07-21 15:30:50 +0200
committerGitHub <noreply@github.com>2021-07-21 08:30:50 -0500
commit1cf52de47a8b17f5c4d94bc1e0a612dfcc390562 (patch)
tree26ef4f2250fd7c15177a5f0663ee231e7799ecbf /var
parent8a038ef64c128e2b75e2865e6d11e5f0b1445d24 (diff)
downloadspack-1cf52de47a8b17f5c4d94bc1e0a612dfcc390562.tar.gz
spack-1cf52de47a8b17f5c4d94bc1e0a612dfcc390562.tar.bz2
spack-1cf52de47a8b17f5c4d94bc1e0a612dfcc390562.tar.xz
spack-1cf52de47a8b17f5c4d94bc1e0a612dfcc390562.zip
py-requests-ftp: add new package (#24975)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-requests-ftp/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-requests-ftp/package.py b/var/spack/repos/builtin/packages/py-requests-ftp/package.py
new file mode 100644
index 0000000000..b61c3a5122
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-requests-ftp/package.py
@@ -0,0 +1,18 @@
+# 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 PyRequestsFtp(PythonPackage):
+ """FTP Transport Adapter for Requests.."""
+
+ homepage = "https://github.com/Lukasa/requests-ftp"
+ pypi = "requests-ftp/requests-ftp-0.3.1.tar.gz"
+
+ version('0.3.1', sha256='7504ceb5cba8a5c0135ed738596820a78c5f2be92d79b29f96ba99b183d8057a')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-requests', type=('build', 'run'))