diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-pathlib/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pathlib/package.py b/var/spack/repos/builtin/packages/py-pathlib/package.py new file mode 100644 index 0000000000..b6b0c9095d --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pathlib/package.py @@ -0,0 +1,19 @@ +# 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 PyPathlib(PythonPackage): + """Object-oriented filesystem paths. + + Attention: this backport module isn't maintained anymore. If you want to + report issues or contribute patches, please consider the pathlib2 project + instead.""" + + homepage = "https://pathlib.readthedocs.org/" + url = "https://pypi.io/packages/source/p/pathlib/pathlib-1.0.1.tar.gz" + + version('1.0.1', sha256='6940718dfc3eff4258203ad5021090933e5c04707d5ca8cc9e73c94a7894ea9f') |