2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-08-04 19:58:42 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-08-04 19:58:42 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2017-01-17 10:13:37 +08:00
|
|
|
class PyPycurl(PythonPackage):
|
2016-08-04 19:58:42 +08:00
|
|
|
"""PycURL is a Python interface to libcurl. PycURL can be used to fetch
|
|
|
|
objects identified by a URL from a Python program."""
|
|
|
|
|
|
|
|
homepage = "http://pycurl.io/"
|
2017-08-07 00:45:00 +08:00
|
|
|
url = "https://pypi.io/packages/source/p/pycurl/pycurl-7.43.0.tar.gz"
|
2016-08-04 19:58:42 +08:00
|
|
|
|
|
|
|
version('7.43.0', 'c94bdba01da6004fa38325e9bd6b9760')
|
|
|
|
|
2016-11-12 11:16:30 +08:00
|
|
|
depends_on('python@2.6:')
|
|
|
|
depends_on('curl@7.19.0:')
|