python3Packages.pyphotonfile: init at 0.2.1
This commit is contained in:
parent
ea63a04660
commit
8a2175ba29
29
pkgs/development/python-modules/pyphotonfile/default.nix
Normal file
29
pkgs/development/python-modules/pyphotonfile/default.nix
Normal 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";
|
||||
};
|
||||
|
||||
}
|
@ -1106,6 +1106,8 @@ in {
|
||||
|
||||
pyperf = callPackage ../development/python-modules/pyperf { };
|
||||
|
||||
pyphotonfile = callPackage ../development/python-modules/pyphotonfile { };
|
||||
|
||||
pefile = callPackage ../development/python-modules/pefile { };
|
||||
|
||||
perfplot = callPackage ../development/python-modules/perfplot { };
|
||||
|
Loading…
Reference in New Issue
Block a user