python-pycollada: new package

pycollada is a python library for reading and writing collada documents.

collada is an open file format (XML based) for 3D applications. Filename
extension is .dae (digital asset exchange).
This commit is contained in:
Bjørn Forsman 2013-12-14 11:26:38 +01:00
parent 0fe37b7519
commit a23acb830a

View File

@ -1113,6 +1113,30 @@ pythonPackages = modules // import ./python-packages-generated.nix {
};
};
pycollada = buildPythonPackage rec {
name = "pycollada-0.4";
src = fetchurl {
url = "http://pypi.python.org/packages/source/p/pycollada/${name}.tar.gz";
md5 = "5d0f00c035491b945cdccdfd8a698ad2";
};
# pycollada-0.4 needs python-dateutil==1.5
buildInputs = [ dateutil_1_5 numpy ];
# Some tests fail because they refer to test data files that don't exist
# (upstream packaging issue)
doCheck = false;
meta = with stdenv.lib; {
description = "Python library for reading and writing collada documents";
homepage = http://pycollada.github.io/;
license = "BSD"; # they don't specify which BSD variant
platforms = platforms.unix;
maintainers = [ maintainers.bjornfor ];
};
};
pycparser = buildPythonPackage rec {
name = "pycparser-2.10";