diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-04 15:03:48 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-30 19:32:18 +0000 |
commit | 332fad5cb1a510fbe43e1ae0c22b10b15b37ad83 (patch) | |
tree | 6f038fb559715b7cd8e3beedc73a281ee411f2ca /gnu | |
parent | f627fd153a2081d3a73f1dfe110975afa92267ab (diff) | |
download | guix-332fad5cb1a510fbe43e1ae0c22b10b15b37ad83.tar.gz guix-332fad5cb1a510fbe43e1ae0c22b10b15b37ad83.zip |
gnu: Add python-pycollada.
* gnu/packages/python-xyz.scm (python-pycollada): New variable.
Change-Id: If0ce96f59e7bd8575b95f3f0a029ce6bcdfe1011
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f810463435..c01e6d799b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -9925,6 +9925,39 @@ Python code against some of the style conventions in @url{http://www.python.org/dev/peps/pep-0008/,PEP 8}.") (license license:expat))) +(define-public python-pycollada + (package + (name "python-pycollada") + (version "0.8") + (source + (origin + (method git-fetch) ; no tests data in PyPi package + (uri (git-reference + (url "https://github.com/pycollada/pycollada") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0by8b46gji9npsgnx91cvzjrfcsm7r4d23gvn7h2h9ninaxlv7zw")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools)) + (propagated-inputs + (list python-numpy + python-dateutil)) + (home-page "https://pycollada.readthedocs.io") + (synopsis "Reading and writing collada documents library") + (description + "This package implements a functionality for creating, editing and +loading @url{https://www.khronos.org/collada/,COLLADA},which is a +COLLAborative Design Activity for establishing an interchange file format for +interactive 3D applications. + +The library allows you to load a COLLADA file and interact with it as a python +object. In addition, it supports creating a collada python object from +scratch, as well as in-place editing.") + (license license:bsd-3))) + (define-public python-pyct (package (name "python-pyct") |