python3Packages.pyprobeplus: init at 1.0.1 (#414107)

This commit is contained in:
dotlambda 2025-06-08 08:39:14 -07:00 committed by GitHub
commit ef7639f259
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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

@ -13275,6 +13275,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 { };