new package: py-path-py (#12534)

This commit is contained in:
Sinan 2019-08-23 08:49:14 -07:00 committed by Adam J. Stewart
parent 00bb6a0b37
commit e8f0e6936c

View File

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