diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2019-10-20 11:21:46 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-20 11:21:46 -0500 |
commit | 1007a0f7e5a72bd9939c79f80951b2a475bfa8fc (patch) | |
tree | 62f8d2c1c338dbe3227feee2274e587fb4e770e7 | |
parent | 47831a95e106ef7f8e2a9579969b5966e65fc1ee (diff) | |
download | spack-1007a0f7e5a72bd9939c79f80951b2a475bfa8fc.tar.gz spack-1007a0f7e5a72bd9939c79f80951b2a475bfa8fc.tar.bz2 spack-1007a0f7e5a72bd9939c79f80951b2a475bfa8fc.tar.xz spack-1007a0f7e5a72bd9939c79f80951b2a475bfa8fc.zip |
Add latest version of py-decorator (#13318)
-rw-r--r-- | var/spack/repos/builtin/packages/py-decorator/package.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-decorator/package.py b/var/spack/repos/builtin/packages/py-decorator/package.py index 2c85de8f02..7902a3074e 100644 --- a/var/spack/repos/builtin/packages/py-decorator/package.py +++ b/var/spack/repos/builtin/packages/py-decorator/package.py @@ -10,10 +10,13 @@ class PyDecorator(PythonPackage): """The aim of the decorator module it to simplify the usage of decorators for the average programmer, and to popularize decorators by showing various non-trivial examples.""" + homepage = "https://github.com/micheles/decorator" - url = "https://pypi.io/packages/source/d/decorator/decorator-4.0.9.tar.gz" + url = "https://pypi.io/packages/source/d/decorator/decorator-4.4.0.tar.gz" + version('4.4.0', sha256='86156361c50488b84a3f148056ea716ca587df2f0de1d34750d35c21312725de') version('4.3.0', sha256='c39efa13fbdeb4506c476c9b3babf6a718da943dab7811c206005a4a956c080c') version('4.0.9', sha256='90022e83316363788a55352fe39cfbed357aa3a71d90e5f2803a35471de4bba8') + depends_on('python@2.6:2.8,3.2:', type=('build', 'run')) depends_on('py-setuptools', type='build') |