38 lines
705 B
Nix
38 lines
705 B
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
poetry-core,
|
||
|
trimesh,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "rbs-assets-library";
|
||
|
version = "0.2.0";
|
||
|
pyproject = true;
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "solid-sinusoid";
|
||
|
repo = "rbs_assets_library";
|
||
|
rev = "16d3f6d750a8c903532f4bde22bbe41ebd35ec5c";
|
||
|
hash = "";
|
||
|
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.unfree; # FIXME: nix-init did not find a license
|
||
|
maintainers = with lib.maintainers; [ ];
|
||
|
};
|
||
|
}
|