python3.pkgs.gcodepy: init at 0.1.1

This commit is contained in:
Basti n00b0ss
2023-11-14 21:04:59 +01:00
parent bbd02eb30e
commit 06c136e24b
2 changed files with 36 additions and 0 deletions
@@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
}:
buildPythonPackage rec {
pname = "gcodepy";
version = "0.1.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "rmeno12";
repo = "gcodepy";
rev = "v${version}";
hash = "sha256-+amBkwwISPyes8ABdqgCw50Zg5ioDa46WZgQsZZgl+8=";
};
nativeBuildInputs = [
setuptools
];
pythonImportsCheck = [
"gcodepy"
];
meta = with lib; {
description = "G-code generator for 3D printers that use Marlin Firmware";
homepage = "https://github.com/rmeno12/gcodepy";
changelog = "https://github.com/rmeno12/gcodepy/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ n00b0ss ];
};
}
+2
View File
@@ -4259,6 +4259,8 @@ self: super: with self; {
gcal-sync = callPackage ../development/python-modules/gcal-sync { };
gcodepy = callPackage ../development/python-modules/gcodepy { };
gcovr = callPackage ../development/python-modules/gcovr { };
gcs-oauth2-boto-plugin = callPackage ../development/python-modules/gcs-oauth2-boto-plugin { };