summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-geomdl/package.py
blob: 7a4447e84b68bf8234eabb23d38f5967a13f3d22 (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
# Copyright 2013-2024 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 PyGeomdl(PythonPackage):
    """Object-oriented pure Python B-Spline and NURBS library."""

    homepage = "https://pypi.org/project/geomdl"
    pypi = "geomdl/geomdl-5.3.1.tar.gz"

    license("MIT")

    version("5.3.1", sha256="e81a31b4d5f111267b16045ba1d9539235a98b2cff5e4bad18f7ddcd4cb804c8")

    depends_on("py-setuptools@40.6.3:", type="build")

    # For compiling geomdl.core module
    depends_on("py-cython@:2", type="build")

    variant("viz", default=False, description="Add viz dependencies")

    depends_on("py-numpy@1.15.4:", type="run", when="+viz")
    depends_on("py-matplotlib@2.2.3:", type="run", when="+viz")
    depends_on("py-plotly", type="run", when="+viz")