Merge pull request #93792 from cab404/photon-utils

SL1ToPhoton: init at 0.1.3
This commit is contained in:
Alexander Bantyev
2020-07-31 20:30:29 +03:00
committed by GitHub
4 changed files with 74 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pillow
, numpy
}:
let
version = "0.2.1";
in
buildPythonPackage {
pname = "pyphotonfile";
inherit version;
propagatedBuildInputs = [ pillow numpy ];
src = fetchFromGitHub {
owner = "fookatchu";
repo = "pyphotonfile";
rev = "v${version}";
sha256 = "1hh1fcn7q3kyk2413pjs18xnxvzrchrisbpj2cd59jrdp0qzgv2s";
};
meta = with lib; {
maintainers = [ maintainers.cab404 ];
license = licenses.gpl3Plus;
description = "Library for reading and writing files for the Anycubic Photon 3D-Printer";
homepage = "https://github.com/fookatchu/pyphotonfile";
};
}