summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pydv/package.py
blob: 53042bec029a9c037e967a11a58edbdc834d5b48 (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', 'fff9560177387a258f765c2d900bb241')

    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'))