summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-atomicwrites/package.py
blob: 6cd224087e0a4f66e5cafa7e2c3ca192b1b0a779 (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 PyAtomicwrites(PythonPackage):
    """Atomic file writes."""

    homepage = "https://github.com/untitaker/python-atomicwrites"
    url      = "https://pypi.io/packages/source/a/atomicwrites/atomicwrites-1.1.5.tar.gz"

    import_modules = ['atomicwrites']

    version('1.1.5', sha256='240831ea22da9ab882b551b31d4225591e5e447a68c5e188db5b89ca1d487585')

    depends_on('py-setuptools', type='build')