py-setproctitle: Add new package (#15170)

This commit is contained in:
Michael Kuhn 2020-02-23 19:46:22 +01:00 committed by GitHub
parent b935d88282
commit a5461f5cba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,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 PySetproctitle(PythonPackage):
"""The setproctitle module allows a process to change its title (as
displayed by system tools such as ps and top)."""
homepage = "https://github.com/dvarrazzo/py-setproctitle"
url = "https://pypi.io/packages/source/s/setproctitle/setproctitle-1.1.10.tar.gz"
version('1.1.10', sha256='6283b7a58477dd8478fbb9e76defb37968ee4ba47b05ec1c053cb39638bd7398')
depends_on('py-setuptools', type='build')