summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pot/package.py
blob: f7d662952ec79fa2f3b02c117d7b758f71dd5ec3 (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
24
25
26
27
28
29
# Copyright 2013-2021 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 PyPot(PythonPackage):
    """
    This open source Python library provide several solvers for optimization
    problems related to Optimal Transport for signal, image processing and
    machine learning.
    """

    homepage = "https://github.com/PythonOT/POT"
    pypi     = "POT/POT-0.7.0.tar.gz"

    version('0.7.0', sha256='d4ac2bc8791f049a3166820d51e218d6c299885449b735eafef8d18c76d4ad06')

    # Avoid that CC and CXX are overridden with g++ in setup.py.
    patch('175.patch', when='@0.7.0')

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

    depends_on('py-numpy@1.16:', type=('build', 'run'))
    depends_on('py-scipy@1.0:', type=('build', 'run'))
    depends_on('py-cython@0.23:', type=('build', 'run'))