Files
nixpkgs/pkgs/development/python-modules/metawear/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

60 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
cython,
boost,
bluez,
nlohmann_json,
pyserial,
requests,
warble,
}:
buildPythonPackage rec {
pname = "metawear";
version = "1.0.8";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-gNEI6P6GslNd1DzFwCFndVIfUvSTPYollGdqkZhQ4Y8=";
};
nativeBuildInputs = [ cython ];
buildInputs = [
boost
bluez
nlohmann_json
];
postPatch = ''
# remove vendored nlohmann_json
rm MetaWear-SDK-Cpp/src/metawear/dfu/cpp/json.hpp
substituteInPlace MetaWear-SDK-Cpp/src/metawear/dfu/cpp/file_operations.cpp \
--replace '#include "json.hpp"' '#include <nlohmann/json.hpp>'
'';
propagatedBuildInputs = [
pyserial
requests
warble
];
enableParallelBuilding = true;
pythonImportsCheck = [
"mbientlab"
"mbientlab.metawear"
];
meta = {
description = "Python bindings for the MetaWear C++ SDK by MbientLab";
homepage = "https://github.com/mbientlab/metawear-sdk-python";
license = with lib.licenses; [ unfree ];
maintainers = with lib.maintainers; [ stepbrobd ];
platforms = lib.platforms.linux;
};
}