Files
nixpkgs/pkgs/development/python-modules/pytinyrenderer/default.nix
2025-04-09 10:36:13 +02:00

37 lines
673 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "pytinyrenderer";
version = "0.0.14";
pyproject = true;
# github has no tags
src = fetchPypi {
inherit pname version;
hash = "sha256-X+20eYUJy5EaA6O8no3o1NWqNrHeUuuHjv7xBLlaPRU=";
};
build-system = [
setuptools
];
pythonImportsCheck = [
"pytinyrenderer"
];
# There are no tests in the pypi archive
doCheck = false;
meta = {
description = "Python bindings for Tiny Renderer";
homepage = "https://pypi.org/project/pytinyrenderer/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ nim65s ];
};
}