summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-qpth/package.py
blob: e547abe86c7d494064425efb260dd898c6f9b8fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2023 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.package import *


class PyQpth(PythonPackage):
    """A fast and differentiable QP solver for PyTorch"""

    homepage = "https://github.com/locuslab/qpth"
    pypi = "qpth/qpth-0.0.15.tar.gz"

    version("0.0.15", sha256="99d8ec5a35877c18543875a7d5b7fc9af1fa9a4d4b0888011c1ecf42ad9d521c")

    depends_on("python", type=("build", "run"))
    depends_on("py-setuptools", type="build")
    depends_on("py-numpy@1")
    depends_on("py-torch")
    depends_on("py-cvxpy")