python313Packages.pypglab: init at 0.0.3
This commit is contained in:
committed by
Martin Weinelt
parent
0192f3d50c
commit
4455198015
@@ -0,0 +1,40 @@
|
||||
{
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
hatchling,
|
||||
lib,
|
||||
paho-mqtt,
|
||||
voluptuous,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pypglab";
|
||||
version = "0.0.3";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pglab-electronics";
|
||||
repo = "pypglab";
|
||||
tag = version;
|
||||
hash = "sha256-b+o98DrTK1HBKvRfTjdJ1MkdUHEg/TaQZhoLR7URZ0c=";
|
||||
};
|
||||
|
||||
build-system = [ hatchling ];
|
||||
|
||||
dependencies = [
|
||||
voluptuous
|
||||
paho-mqtt
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "pypglab" ];
|
||||
|
||||
# tests require physical hardware
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Asynchronous Python library to communicate with PG LAB Electronics devices over MQTT";
|
||||
homepage = "https://github.com/pglab-electronics/pypglab";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
||||
@@ -10585,6 +10585,8 @@ self: super: with self; {
|
||||
|
||||
pymeshlab = toPythonModule (pkgs.libsForQt5.callPackage ../applications/graphics/pymeshlab { });
|
||||
|
||||
pypglab = callPackage ../development/python-modules/pypglab { };
|
||||
|
||||
pyprecice = callPackage ../development/python-modules/pyprecice { };
|
||||
|
||||
pyprobables = callPackage ../development/python-modules/pyprobables { };
|
||||
|
||||
Reference in New Issue
Block a user