spack/var/spack/repos/builtin/packages/py-path-py/package.py
2019-08-23 10:49:14 -05:00

25 lines
945 B
Python

# 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)