(address . bug-guix@gnu.org)
I was trying to install Sverchok plugin for Blender. It enables Blender
to change parameters in order to modify a wide range of values without
redrawing everything in case of a global change in something repetitive.
I checked the license. It is GPLv3. What else should i do to verify freedom?
When i tryed to install the Sverchok addon
I got the message:
ImportError: No module named ‘numpy’
so i installed python-numpy.
And then i got error:
ImportError: No module named ‘requests’
I then instaled python-requests. Both these dependencies are mentioned in Sverchok's documentation.
The Blender binary ships with:
idna, chardet, urllib3, certifi, requests and numpy
It reports versions of numpy, requests and others
set(REQUESTS_VERSION 2.18.4)
set(NUMPY_VERSION v1.13.1)
set(NUMPY_SHORT_VERSION 1.13)
set(NUMPY_URI https://pypi.python.org/packages/c0/3a/40967d9f5675fbb097ffec170f59c2ba19fc96373e73ad47c2cae9a30aed/numpy-1.13.1.zip)
set(NUMPY_HASH 2c3c0f4edf720c3a7b525dacc825b9ae)
propagated-inputs
The NixOS package explicitly disables numpy at build time.
Those dependencies are not required for building the Guix package:
It's better to just package these plugins separately rather than
propagating these (large) packages for every Blender user.
They are not necessary to run blender
It is just that Blender's oficial binary ships with those plugins and
their dependencies by default. We need not do the same. If the user
needs those addons, she may install them with Guix solving the
dependencies.
I was helped by:
<bzztploink>
<Yaniel>
from #blender
and:
<mbakke>
from the Guix.
Thank you very much!