diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2019-08-10 11:50:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-10 11:50:10 -0500 |
commit | 37e59cbd7e8b4901644adcb73a7f491247fdea69 (patch) | |
tree | b4070f3a1526f40a3fe20513e6db40acd6610f51 | |
parent | 572bc5cc77060ed6ef21ec8e963e945c55e7d0d6 (diff) | |
download | spack-37e59cbd7e8b4901644adcb73a7f491247fdea69.tar.gz spack-37e59cbd7e8b4901644adcb73a7f491247fdea69.tar.bz2 spack-37e59cbd7e8b4901644adcb73a7f491247fdea69.tar.xz spack-37e59cbd7e8b4901644adcb73a7f491247fdea69.zip |
Add py-pyperclip package (#12375)
-rw-r--r-- | var/spack/repos/builtin/packages/py-pyperclip/package.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pyperclip/package.py b/var/spack/repos/builtin/packages/py-pyperclip/package.py new file mode 100644 index 0000000000..98853bef11 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pyperclip/package.py @@ -0,0 +1,17 @@ +# Copyright 2013-2019 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 PyPyperclip(PythonPackage): + """A cross-platform clipboard module for Python.""" + + homepage = "https://github.com/asweigart/pyperclip" + url = "https://pypi.io/packages/source/p/pyperclip/pyperclip-1.7.0.tar.gz" + + version('1.7.0', sha256='979325468ccf682104d5dcaf753f869868100631301d3e72f47babdea5700d1c') + + depends_on('py-setuptools', type='build') |