python3Packages.pytinyrenderer: init at 0.0.14
Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>
This commit is contained in:
co-authored by
Gaétan Lepage
parent
698214a32b
commit
4d62c85468
@@ -0,0 +1,36 @@
|
||||
{
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
@@ -14898,6 +14898,8 @@ self: super: with self; {
|
||||
|
||||
pytimeparse2 = callPackage ../development/python-modules/pytimeparse2 { };
|
||||
|
||||
pytinyrenderer = callPackage ../development/python-modules/pytinyrenderer { };
|
||||
|
||||
pytlv = callPackage ../development/python-modules/pytlv { };
|
||||
|
||||
pytm = callPackage ../development/python-modules/pytm { };
|
||||
|
||||
Reference in New Issue
Block a user