python3Packages.pyrepetierng: init at 0.1.0 (#432705)

This commit is contained in:
Martin Weinelt
2025-08-11 13:07:02 +02:00
committed by GitHub
3 changed files with 38 additions and 1 deletions
@@ -0,0 +1,34 @@
{
lib,
buildPythonPackage,
fetchPypi,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "pyrepetierng";
version = "0.1.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-0+Qr2yrjk1/K4Yg55d8sdmI6BtBYI76DCQiPlp6dzrc=";
};
build-system = [ setuptools ];
dependencies = [ requests ];
# Package has no tests
doCheck = false;
pythonImportsCheck = [ "pyrepetierng" ];
meta = {
description = "An updated python Repetier-Server library based on Mtrabs library";
homepage = "https://github.com/ShadowBr0ther/pyrepetier-ng";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
@@ -4936,7 +4936,8 @@
];
"repetier" =
ps: with ps; [
]; # missing inputs: pyrepetierng
pyrepetierng
];
"rest" =
ps: with ps; [
jsonpath
+2
View File
@@ -13778,6 +13778,8 @@ self: super: with self; {
inherit (pkgs) mesa;
};
pyrepetierng = callPackage ../development/python-modules/pyrepetierng { };
pyrevolve = callPackage ../development/python-modules/pyrevolve { };
pyrfc3339 = callPackage ../development/python-modules/pyrfc3339 { };