summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-xonsh/package.py
blob: fbc2350c21fdf261c3b6c95e9e0b8941249e49d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 PyXonsh(PythonPackage):
    """Python-powered, cross-platform, Unix-gazing shell language and command prompt."""

    homepage = "https://xon.sh/"
    pypi = "xonsh/xonsh-0.11.0.tar.gz"

    maintainers("mdorier")

    version("0.11.0", sha256="0d9c3d9a4e8b8199ae697fbc9d1e0ae55085cdbdd4306d04813350996f9c15dc")

    depends_on("python@3.6:", type=("build", "run"))
    depends_on("py-setuptools", type="build")