45 lines
964 B
Nix
45 lines
964 B
Nix
{ buildPythonPackage
|
|
, fetchgit
|
|
, python3Packages
|
|
, lib
|
|
, autoPatchelfHook
|
|
, pythonImportsCheckHook
|
|
, config
|
|
, cudaSupport ? config.cudaSupport
|
|
, numpy
|
|
, setuptools
|
|
, bpy-wheel
|
|
, ... }:
|
|
|
|
buildPythonPackage rec {
|
|
name = "rcg_pipeline";
|
|
version = "1.0.0";
|
|
format = "pyproject";
|
|
|
|
# src = /home/movefasta/Documents/robossembler/framework;
|
|
|
|
src = fetchgit {
|
|
url = "https://gitlab.com/robossembler/framework";
|
|
hash = "sha256-iLPphGbIGf7IRdedBSC2yJ2M3ttsHATvtOLot/04AZU=";
|
|
rev = "8268db0dec793bfa42d4fcba24c7d442938b7a25";
|
|
};
|
|
sourceRoot = "${src.name}/rcg_pipeline";
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
bpy-wheel
|
|
];
|
|
|
|
pythonImportsCheck = [ "rcg_pipeline" ];
|
|
|
|
meta = with lib; {
|
|
description = "Robossembler CG Pipeline Python Module";
|
|
homepage = "https://gitlab.com/robossembler/framework/rcg_pipeline";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|