
* new package: gatetools This PR adds the gatetools package and dependencies. The gatetools package is a set of command line tools for gate. Since it is primarily a CLI, although python modules can be loaded, it is named gatetools as opposed to py-gatetools. * Fix quote characterss to avoid test error * Found another UTF8 character that was tripping up tests * Another UTF-8 character to replace * Remove py-python-box dependency and package file * Make numpy a variant - py-setuptools needs to be a run dependendency This was masked by py-numpy having py-setuptools as a run dependency. * Add missing build depency on py-pytest-runner
19 lines
600 B
Python
19 lines
600 B
Python
# 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 PyWget(PythonPackage):
|
|
"""pure python download utility
|
|
|
|
Download the file for your platform. If you're not sure which to choose,
|
|
learn more about installing packages."""
|
|
|
|
homepage = "http://bitbucket.org/techtonik/python-wget/"
|
|
pypi = "wget/wget-3.2.zip"
|
|
|
|
version('3.2', sha256='35e630eca2aa50ce998b9b1a127bb26b30dfee573702782aa982f875e3f16061')
|