70 lines
1.3 KiB
Nix
70 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
replaceVars,
|
|
|
|
# build
|
|
pkg-config,
|
|
glibc,
|
|
python,
|
|
setuptools,
|
|
bluez,
|
|
boost,
|
|
glib,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "gattlib";
|
|
version = "20210616";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "oscaracena";
|
|
repo = "pygattlib";
|
|
rev = "v.${version}";
|
|
hash = "sha256-n3D9CWKvgw4FYmbvsfhaHN963HARBG0p4CcZBC8Gkb0=";
|
|
};
|
|
|
|
patches = [
|
|
# Fix build for Python 3.13
|
|
(fetchpatch {
|
|
url = "https://github.com/oscaracena/pygattlib/commit/73a73b71cfc139e1e0a08816fb976ff330c77ea5.patch";
|
|
hash = "sha256-/Y/CZNdN/jcxWroqRfdCH2rPUxZUbug668MIAow0scs=";
|
|
})
|
|
(replaceVars ./setup.patch {
|
|
boost_version =
|
|
let
|
|
pythonVersion = with lib.versions; "${major python.version}${minor python.version}";
|
|
in
|
|
"boost_python${pythonVersion}";
|
|
})
|
|
];
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
glibc
|
|
];
|
|
|
|
buildInputs = [
|
|
bluez
|
|
boost
|
|
glib
|
|
];
|
|
|
|
# has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "gattlib" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library to use the GATT Protocol for Bluetooth LE devices";
|
|
homepage = "https://github.com/oscaracena/pygattlib";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|