summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-xonsh/package.py
blob: d0ac8b70a4cc2355ea367d79241469baa90eb135 (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-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 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')