blob: 9f2dbb74e068f81eebcde362558be1b604f959e8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright 2013-2020 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 PySh(PythonPackage):
"""Python subprocess interface"""
homepage = "https://github.com/amoffat/sh"
pypi = "sh/sh-1.12.9.tar.gz"
version('1.12.9', sha256='579aa19bae7fe86b607df1afaf4e8537c453d2ce3d84e1d3957e099359a51677')
version('1.11', sha256='590fb9b84abf8b1f560df92d73d87965f1e85c6b8330f8a5f6b336b36f0559a4')
depends_on('py-setuptools', type='build')
|