python3Packages.pyprobeplus: init at 1.0.1

This commit is contained in:
Robert Schütz 2025-06-04 18:33:31 -07:00
parent 75d166dc39
commit 565ec0528a
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{
bleak,
buildPythonPackage,
fetchFromGitHub,
lib,
setuptools,
}:
buildPythonPackage rec {
pname = "pyprobeplus";
version = "1.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "pantherale0";
repo = "pyprobeplus";
tag = version;
hash = "sha256-ixrkwnvqjHwqnKG3Xo4qJP/FcP7fuAOPKpar13e8U1w=";
};
build-system = [ setuptools ];
dependencies = [
bleak
];
pythonImportsCheck = [ "pyprobeplus" ];
# upstream has no tests
doCheck = false;
meta = {
changelog = "https://github.com/pantherale0/pyprobeplus/releases/tag/${src.tag}";
description = "Generic library to interact with a Probe Plus BLE device";
homepage = "https://github.com/pantherale0/pyprobeplus";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}

View file

@ -13231,6 +13231,8 @@ self: super: with self; {
pyprobables = callPackage ../development/python-modules/pyprobables { };
pyprobeplus = callPackage ../development/python-modules/pyprobeplus { };
pyprof2calltree = callPackage ../development/python-modules/pyprof2calltree { };
pyproj = callPackage ../development/python-modules/pyproj { };