Unverified Commit 446a718d authored by Martin Weinelt's avatar Martin Weinelt
Browse files

meerk40t: init at 0.8.0031

MeerK40t LaserCutter Software
https://github.com/meerk40t/meerk40t
parent 838cdc75
Loading
Loading
Loading
Loading
+95 −0
Original line number Diff line number Diff line
{ lib
, fetchFromGitHub
, python3
, gtk3
, wrapGAppsHook
}:

let
  inherit (python3.pkgs) buildPythonApplication buildPythonPackage fetchPypi;

  meerk40t-camera = buildPythonPackage rec {
    pname = "meerk40t-camera";
    version = "0.1.9";
    format = "setuptools";

    src = fetchPypi {
      inherit pname version;
      hash = "sha256-uGCBHdgWoorVX2XqMCg0YBweb00sQ9ZSbJe8rlGeovs=";
    };

    postPatch = ''
      sed -i '/meerk40t/d' setup.py
    '';

    propagatedBuildInputs = with python3.pkgs; [
      opencv4
    ];

    pythonImportsCheck = [
      "camera"
    ];

    doCheck = false;

    meta = with lib; {
      description = "MeerK40t camera plugin";
      license = licenses.mit;
      homepage = "https://github.com/meerk40t/meerk40t-camera";
      maintainers = with maintainers; [ hexa ];
    };
  };
in
buildPythonApplication rec {
  pname = "MeerK40t";
  version = "0.8.0031";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "meerk40t";
    repo = pname;
    rev = "refs/tags/${version}";
    hash = "sha256-7Vc7Z+mxy+xRbUBeivkqVwO86ovZDo42M4G0ZD23vMk=";
  };

  nativeBuildInputs = [
    wrapGAppsHook
  ];

  # prevent double wrapping
  dontWrapGApps = true;

  propagatedBuildInputs = with python3.pkgs; [
    ezdxf
    meerk40t-camera
    opencv4
    pillow
    pyserial
    pyusb
    setuptools
    wxPython_4_2
  ];

  preFixup = ''
    gappsWrapperArgs+=(
      --prefix XDG_DATA_DIRS : "${gtk3}/share/gsettings-schemas/${gtk3.name}"
    )
    makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
  '';

  checkInputs = with python3.pkgs; [
    unittestCheckHook
  ];

  preCheck = ''
    export HOME=$TMPDIR
  '';

  meta = with lib; {
    changelog = "https://github.com/meerk40t/meerk40t/releases/tag/${version}";
    description = "MeerK40t LaserCutter Software";
    homepage = "https://github.com/meerk40t/meerk40t";
    license = licenses.mit;
    maintainers = with maintainers; [ hexa ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -28701,6 +28701,8 @@ with pkgs;
  marker = callPackage ../applications/editors/marker { };
  meerk40t = callPackage ../applications/misc/meerk40t { };
  musikcube = callPackage ../applications/audio/musikcube {
    inherit (darwin.apple_sdk.frameworks) Cocoa SystemConfiguration;
  };