diff options
author | wspear <wjspear@gmail.com> | 2019-01-26 09:10:02 -0600 |
---|---|---|
committer | Axel Huebl <axel.huebl@plasma.ninja> | 2019-01-26 16:10:02 +0100 |
commit | 68eb2a14189a33f5a98b58f445b9a4893072b3a7 (patch) | |
tree | 15fff3962392adc43ad79f7d7330e0d55a4fe3ed | |
parent | b94c8c2d536ff0967fc61d80f9b51d5e333c4c9f (diff) | |
download | spack-68eb2a14189a33f5a98b58f445b9a4893072b3a7.tar.gz spack-68eb2a14189a33f5a98b58f445b9a4893072b3a7.tar.bz2 spack-68eb2a14189a33f5a98b58f445b9a4893072b3a7.tar.xz spack-68eb2a14189a33f5a98b58f445b9a4893072b3a7.zip |
Added the py-send2trash package as a pre-req for py-jupyterhub (#10441)
-rw-r--r-- | var/spack/repos/builtin/packages/py-send2trash/package.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-send2trash/package.py b/var/spack/repos/builtin/packages/py-send2trash/package.py new file mode 100644 index 0000000000..be38ccf59c --- /dev/null +++ b/var/spack/repos/builtin/packages/py-send2trash/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 PySend2trash(PythonPackage): + """Python library to send files to Trash/Recycle on all platforms.""" + + homepage = "https://github.com/hsoft/send2trash" + url = "https://github.com/hsoft/send2trash/archive/1.5.0.tar.gz" + + version('1.5.0', sha256='7cebc0ffc8b6d6e553bce9c6bb915614610ba2dec17c2f0643b1b97251da2a41') + + depends_on('py-setuptools', type='build') |