nix-overlay/pkgs/development/python-modules/freecad.robossembler/default.nix

46 lines
823 B
Nix
Raw Normal View History

{ buildPythonPackage
, fetchgit
, python3Packages
, lib
, autoPatchelfHook
, pythonImportsCheckHook
, config
, setuptools
2024-04-27 15:45:41 +03:00
, freecad-lib
, pytestCheckHook
, toPythonModule
, python
2024-04-22 15:57:32 +03:00
, rbsFrameworkSrc
, ... }:
buildPythonPackage rec {
name = "freecad.robossembler";
version = "1.0.0";
format = "setuptools";
2024-04-22 15:57:32 +03:00
src = rbsFrameworkSrc;
sourceRoot = "${src.name}/freecad_workbench";
nativeBuildInputs = [
setuptools
];
2024-04-27 15:45:41 +03:00
buildInputs = [ freecad-lib ];
propagatedBuildInputs = [
2024-04-27 15:45:41 +03:00
freecad-lib
];
pythonImportsCheck = [ "freecad.robossembler" ];
doCheck = false;
meta = with lib; {
description = "Robossembler CG Pipeline Python Module";
homepage = "https://gitlab.com/robossembler/framework/rcg_pipeline";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}