diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-path-py/package.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-path-py/package.py b/var/spack/repos/builtin/packages/py-path-py/package.py new file mode 100644 index 0000000000..428c668acd --- /dev/null +++ b/var/spack/repos/builtin/packages/py-path-py/package.py @@ -0,0 +1,24 @@ +# 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 PyPathPy(PythonPackage): + """A module wrapper for os.path""" + + homepage = "https://github.com/jaraco/path.py" + url = "https://pypi.io/packages/source/p/path.py/path.py-12.0.1.tar.gz" + + version('12.0.1', sha256='9f2169633403aa0423f6ec000e8701dd1819526c62465f5043952f92527fea0f') + version('5.2', sha256='9916ae9aa603ce7e131e4ac76c25bcdbf6208f8fe5cc565a5022b85dc9d7022c') + + depends_on('py-setuptools', type='build') + + def url_for_version(self, version): + if version >= Version('7.6.1'): + return 'https://pypi.io/packages/source/p/path.py/path.py-{0}.tar.gz'.format(version) + else: + return 'https://github.com/jaraco/path.py/archive/{0}.tar.gz'.format(version) |