1{
2 lib,
3 fetchPypi,
4 buildPythonPackage,
5 numpy,
6 python-dateutil,
7}:
8
9buildPythonPackage rec {
10 pname = "pycollada";
11 version = "0.8";
12 format = "setuptools";
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-86N1nMTOwdWekyqtdDmdvPVB0YhiqtkDx3AEDaQq8g4=";
17 };
18
19 propagatedBuildInputs = [
20 numpy
21 python-dateutil
22 ];
23
24 # Some tests fail because they refer to test data files that don't exist
25 # (upstream packaging issue)
26 doCheck = false;
27
28 meta = with lib; {
29 description = "Python library for reading and writing collada documents";
30 homepage = "http://pycollada.github.io/";
31 license = licenses.bsd3;
32 platforms = with platforms; linux ++ darwin;
33 maintainers = with maintainers; [ bjornfor ];
34 };
35}