Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 744 B view raw
1{ stdenv, fetchPypi, buildPythonPackage, numpy, dateutil }: 2 3buildPythonPackage rec { 4 pname = "pycollada"; 5 version = "0.7.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1rp4wlvfywgk3v6l3hnhjx61x9yqawvvivpq4dig2jj71k3mpsyj"; 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}