biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / sl1-to-photon / default.nix
blob901265016f8efd1b8d1f9925376f0c6f8fe6a2de
1 { lib
2 , buildPythonApplication
3 , fetchFromGitHub
4 , pillow
5 , pyside2
6 , numpy
7 , pyphotonfile
8 , shiboken2
9 }:
10 let
11   version = "0.1.3+";
13  buildPythonApplication rec {
14   pname = "sl1-to-photon";
15   inherit version;
17   src = fetchFromGitHub {
18     owner = "cab404";
19     repo = "SL1toPhoton";
20     rev = "7edc6ea99818622f5d49ac7af80ddd4916b8c19f";
21     sha256 = "ssFfjlBMi3FHosDBUA2gs71VUIBkEdPVcV3STNxmOIM=";
22   };
24   pythonPath = [ pyphotonfile pillow numpy pyside2 shiboken2 ];
26   format = "setuptools";
27   dontUseSetuptoolsCheck = true;
29   installPhase = ''
30     install -D -m 0755 SL1_to_Photon.py $out/bin/${pname}
31   '';
33   meta = with lib; {
34     maintainers = [ maintainers.cab404 ];
35     license = licenses.gpl3Plus;
36     description = "Tool for converting Slic3r PE's SL1 files to Photon files for the Anycubic Photon 3D-Printer";
37     homepage = "https://github.com/cab404/SL1toPhoton";
38     mainProgram = "sl1-to-photon";
39   };