diff options
| author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2021-01-03 18:38:40 -0500 | 
|---|---|---|
| committer | Leo Famulari <leo@famulari.name> | 2021-01-04 15:09:12 -0500 | 
| commit | bab4e482be563521f9eca9b68bcfcb1cf12e05e6 (patch) | |
| tree | 8c35e97b65103172b3bb221f354a8755e090f869 /gnu | |
| parent | 6054b7d89dbbed5450f275d8559d1779d6e9db1f (diff) | |
gnu: Add python-pivy.
* gnu/packages/python-xyz.scm (python-pivy): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 45 | 
1 files changed, 45 insertions, 0 deletions
| diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 0ac95deb1d..c4fbadb42b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -177,6 +177,7 @@    #:use-module (gnu packages shells)    #:use-module (gnu packages sphinx)    #:use-module (gnu packages ssh) +  #:use-module (gnu packages swig)    #:use-module (gnu packages terminals)    #:use-module (gnu packages tex)    #:use-module (gnu packages texinfo) @@ -23404,3 +23405,47 @@ Qt applications.")       "Bitstring is a library for simple construction, analysis and modification   of binary data.")      (license license:expat))) + +(define-public python-pivy +  (package +    (name "python-pivy") +    (version "0.6.5") +    (source +      (origin +        (method git-fetch) +        (uri (git-reference +               (url "https://github.com/coin3d/pivy") +               (commit version))) +        (file-name (git-file-name name version)) +        (sha256 +          (base32 "0vids7sxk8w5vr73xdnf8xdci71a7syl6cd35aiisppbqyyfmykx")))) +    (build-system python-build-system) +    (arguments +      `(;; The test suite fails due to an import cycle between 'pivy' and '_coin' +        #:tests? #f +        #:phases +        (modify-phases %standard-phases +          (add-after 'unpack 'patch-cmake-include-dirs +           (lambda _ +             ;; Patch buildsystem to respect Coin3D include directory +             (substitute* "CMakeLists.txt" +                          (("\\$\\{SoQt_INCLUDE_DIRS}") +                           "${Coin_INCLUDE_DIR};${SoQt_INCLUDE_DIRS}")) +             #t))))) +    (native-inputs +      `(("cmake" ,cmake) +        ("swig" ,swig))) +    (inputs +      `(("python-wrapper" ,python-wrapper) +        ("qtbase" ,qtbase) +        ("libxi" ,libxi) +        ("libice" ,libice) +        ("soqt" ,soqt) +        ("glew" ,glew) +        ("coin3D" ,coin3D-4))) +    (home-page "https://github.com/coin3d/pivy") +    (synopsis "Python bindings to Coin3D") +    (description +      "Pivy provides python bindings for Coin, a 3D graphics library with an +Application Programming Interface based on the Open Inventor 2.1 API.") +    (license license:isc))) | 
