3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/pycollada/default.nix

26 lines
740 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage, numpy, dateutil }:
buildPythonPackage rec {
pname = "pycollada";
2019-11-29 08:10:49 +00:00
version = "0.7";
src = fetchPypi {
inherit pname version;
2019-11-29 08:10:49 +00:00
sha256 = "0b2vz9fp9asw57m3p9zjlz9gddanrhpxbdfimg98ik654kp2vj7r";
};
2017-12-30 11:25:59 +00:00
propagatedBuildInputs = [ numpy dateutil ];
# 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 = with platforms; linux ++ darwin;
maintainers = with maintainers; [ bjornfor ];
};
}