summary refs log tree commit diff
path: root/pkgs/development/python-modules/pycollada/default.nix
blob: 4b177012f4edd4edd82bebb2bedf524514d7d297 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv, fetchPypi, buildPythonPackage, numpy, dateutil }:

buildPythonPackage rec {
  pname = "pycollada";
  version = "0.7.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1rp4wlvfywgk3v6l3hnhjx61x9yqawvvivpq4dig2jj71k3mpsyj";
  };

  propagatedBuildInputs = [ numpy 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 = "BSD"; # they don't specify which BSD variant
    platforms = with platforms; linux ++ darwin;
    maintainers = with maintainers; [ bjornfor ];
  };
}