summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-wget/package.py
blob: 125a72ccc45947e46604d0daccc784fe038104c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2024 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 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."""

    pypi = "wget/wget-3.2.zip"

    version("3.2", sha256="35e630eca2aa50ce998b9b1a127bb26b30dfee573702782aa982f875e3f16061")

    # pip silently replaces distutils with setuptools
    depends_on("py-setuptools", type="build")