runtime/rbs-assets-library.nix
2024-12-01 17:34:13 +03:00

37 lines
721 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
trimesh,
}:
buildPythonPackage rec {
pname = "rbs-assets-library";
version = "unstable-2024-12-01";
pyproject = true;
src = fetchgit {
owner = "solid-sinusoid";
repo = "rbs_assets_library";
rev = "16d3f6d750a8c903532f4bde22bbe41ebd35ec5c";
hash = "sha256-0JrOp0xbJc/cZdy7Ho53mSI5HmwVmPDvDJOx+Wu6nIg=";
fetchLFS = true;
};
build-system = [
poetry-core
trimesh
];
pythonImportsCheck = [
"rbs_assets_library"
];
meta = {
description = "";
homepage = "https://github.com/solid-sinusoid/rbs_assets_library";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ ];
};
}