diff options
author | Jen Herting <jen@herting.cc> | 2022-10-05 22:43:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-05 21:43:29 -0500 |
commit | c5d62294b20c56a4ed84c81b1ff48ccd97d8afca (patch) | |
tree | 81dfe6777bfe3f6e2c1a0627403d34023bf1fc63 /var | |
parent | 189baa96dbd4f640fa33bcbcf81deb1115f38bbd (diff) | |
download | spack-c5d62294b20c56a4ed84c81b1ff48ccd97d8afca.tar.gz spack-c5d62294b20c56a4ed84c81b1ff48ccd97d8afca.tar.bz2 spack-c5d62294b20c56a4ed84c81b1ff48ccd97d8afca.tar.xz spack-c5d62294b20c56a4ed84c81b1ff48ccd97d8afca.zip |
New package: py-pyassimp (#30762)
* New package: py-pyasimp
* Cleaned up dependencies
* Fixed liked issue
* Fixed linked issue
* [py-pyassimp] depends on assimp
* [py-pyassimp] added dependency on py-setuptools
* [@spackbot] updating style on behalf of qwertos
Co-authored-by: Viv Eric Hafener <vehrc@sporcbuild.rc.rit.edu>
Co-authored-by: qwertos <qwertos@users.noreply.github.com>
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-pyassimp/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pyassimp/package.py b/var/spack/repos/builtin/packages/py-pyassimp/package.py new file mode 100644 index 0000000000..b4208352a8 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pyassimp/package.py @@ -0,0 +1,19 @@ +# Copyright 2013-2022 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 PyPyassimp(PythonPackage): + """Python bindings for the Open Asset Import Library (ASSIMP)""" + + homepage = "https://github.com/mikedh/pyassimp" + pypi = "pyassimp/pyassimp-4.1.4.tar.gz" + + version("4.1.4", sha256="266bd4be170d46065b8c2ad0f5396dad10938a6bbf9a566c4e4d56456e33aa6a") + + depends_on("py-setuptools", type="build") + depends_on("py-numpy", type=("build", "run")) + depends_on("assimp") |