2021-07-04 02:40:35 +00:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, numpy, python-dateutil }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pycollada";
|
2024-01-13 08:15:51 +00:00
|
|
|
version = "0.8";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2024-01-13 08:15:51 +00:00
|
|
|
sha256 = "sha256-86N1nMTOwdWekyqtdDmdvPVB0YhiqtkDx3AEDaQq8g4=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-07-04 02:40:35 +00:00
|
|
|
propagatedBuildInputs = [ numpy python-dateutil ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# Some tests fail because they refer to test data files that don't exist
|
|
|
|
# (upstream packaging issue)
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Python library for reading and writing collada documents";
|
|
|
|
homepage = "http://pycollada.github.io/";
|
2024-01-02 11:29:13 +00:00
|
|
|
license = licenses.bsd3;
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
|
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
|
|
};
|
|
|
|
}
|