runtime/rbs-assets-library.nix

38 lines
721 B
Nix
Raw Normal View History

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