summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-fsspec/package.py
blob: 7d7372f66a608ff4586a4cd9a4ffe1d5657a6d36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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 PyFsspec(PythonPackage):
    """A specification for pythonic filesystems."""

    homepage = "https://github.com/intake/filesystem_spec"
    url = "https://github.com/intake/filesystem_spec/archive/0.4.4.tar.gz"

    version('0.4.4', sha256='27dfc3dab37d5c037683c7a3eaf7acd8b24ee56e4ce3edb14af54bdb43973d43')

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