e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
26 lines
739 B
Nix
26 lines
739 B
Nix
{ lib, fetchPypi, buildPythonPackage, numpy, python-dateutil }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pycollada";
|
|
version = "0.8";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-86N1nMTOwdWekyqtdDmdvPVB0YhiqtkDx3AEDaQq8g4=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ numpy python-dateutil ];
|
|
|
|
# Some tests fail because they refer to test data files that don't exist
|
|
# (upstream packaging issue)
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Python library for reading and writing collada documents";
|
|
homepage = "http://pycollada.github.io/";
|
|
license = licenses.bsd3;
|
|
platforms = with platforms; linux ++ darwin;
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
};
|
|
}
|