1{ lib, fetchPypi, buildPythonPackage, numpy, python-dateutil }: 2 3buildPythonPackage rec { 4 pname = "pycollada"; 5 version = "0.7.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "70a2630ed499bdab718c0e61a3e6ae3698130d7e4654e89cdecde51bfdaea56f"; 10 }; 11 12 propagatedBuildInputs = [ numpy python-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 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}