Files
nixpkgs/pkgs/development/python-modules/pycollada/default.nix
T
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

27 lines
754 B
Nix

{ lib, fetchPypi, buildPythonPackage, numpy, python-dateutil }:
buildPythonPackage rec {
pname = "pycollada";
version = "0.7.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "70a2630ed499bdab718c0e61a3e6ae3698130d7e4654e89cdecde51bfdaea56f";
};
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 ];
};
}