1{ stdenv, fetchPypi, buildPythonPackage, numpy, isPy3k, dateutil, dateutil_1_5 }:
2
3buildPythonPackage rec {
4 pname = "pycollada";
5 version = "0.6";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "fcd6f38fd981e350f9ec754d9671834017accd600e967d6d299a6cfdae5ba4f4";
10 };
11
12 propagatedBuildInputs = [ numpy dateutil ];
13
14 # Some tests fail because they refer to test data files that don't exist
15 # (upstream packaging issue)
16 doCheck = false;
17
18 meta = with stdenv.lib; {
19 description = "Python library for reading and writing collada documents";
20 homepage = http://pycollada.github.io/;
21 license = "BSD"; # they don't specify which BSD variant
22 platforms = with platforms; linux ++ darwin;
23 maintainers = with maintainers; [ bjornfor ];
24 };
25}