diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2019-11-18 12:09:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-18 12:09:47 +0100 |
commit | ab62ad463de70f5e15eb20fcec2820dc12a4e55c (patch) | |
tree | e227a9f6a899de4e21377162e061c46e42ee9afd | |
parent | 686e613e94bcee23936d3846d029deb5ca29d537 (diff) | |
download | spack-ab62ad463de70f5e15eb20fcec2820dc12a4e55c.tar.gz spack-ab62ad463de70f5e15eb20fcec2820dc12a4e55c.tar.bz2 spack-ab62ad463de70f5e15eb20fcec2820dc12a4e55c.tar.xz spack-ab62ad463de70f5e15eb20fcec2820dc12a4e55c.zip |
py-xattr: fix a package that was pointing to a fork (#13685)
The package now points to the official github repository for master
and to PyPI for release versions.
-rw-r--r-- | var/spack/repos/builtin/packages/py-xattr/package.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/py-xattr/package.py b/var/spack/repos/builtin/packages/py-xattr/package.py index 0d29e673e2..8e53b6e705 100644 --- a/var/spack/repos/builtin/packages/py-xattr/package.py +++ b/var/spack/repos/builtin/packages/py-xattr/package.py @@ -3,17 +3,18 @@ # # SPDX-License-Identifier: (Apache-2.0 OR MIT) -from spack import * - class PyXattr(PythonPackage): """A python interface to access extended file attributes, - sans libattr dependency""" + sans libattr dependency. + """ homepage = "http://pyxattr.k1024.org/" - git = "https://github.com/fwang2/pyxattr.git" + url = "https://pypi.io/packages/source/x/xattr/xattr-0.9.6.tar.gz" + git = "https://github.com/iustin/pyxattr.git" - version('develop', branch='dev') + version('master', branch='master') + version('0.9.6', sha256='7cb1b28eeab4fe99cc4350e831434142fce658f7d03f173ff7722144e6a47458') depends_on('python@2.7:') depends_on('py-setuptools', type='build') |