summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pydv/package.py
blob: 2da0b177f5a45b50221146f0706a33dfce0dda83 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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 PyPydv(PythonPackage):
    """PDV is a 1D graphics and data analysis tool, heavily based on the
    ULTRA plotting tool"""

    homepage = "https://github.com/griffin28/PyDV"
    url      = "https://github.com/griffin28/PyDV/archive/pydv-2.4.2.tar.gz"

    version('2.4.2', sha256='46bda76e27e85beaad446455d0cc279388d455f05912a8ff8e4fb66de983992c')

    depends_on('py-backports-functools-lru-cache', type=('build', 'run'))
    depends_on('py-cycler', type=('build', 'run'))
    depends_on('py-python-dateutil', type=('build', 'run'))
    depends_on('py-matplotlib', type=('build', 'run'))
    depends_on('py-pyside', type=('build', 'run'))
    depends_on('py-scipy', type=('build', 'run'))