summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-xattr/package.py
blob: c6ee55760f9e6bdb522fdc08ba074c08eb1d4cba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright 2013-2018 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 PyXattr(PythonPackage):
    """A python interface to access extended file attributes,
        sans libattr dependency"""

    homepage = "http://pyxattr.k1024.org/"
    git      = "https://github.com/fwang2/pyxattr.git"

    version('develop', branch='dev')

    depends_on('python@2.7:')
    depends_on('py-setuptools', type='build')