nixpkgs/pkgs/development/python-modules/pc-ble-driver-py/default.nix

32 lines
1,011 B
Nix
Raw Normal View History

2020-07-13 13:50:05 +02:00
{ stdenv, fetchFromGitHub, cmake, git, swig, boost, udev, pc-ble-driver
, buildPythonPackage, enum34, wrapt, future, setuptools, scikit-build }:
buildPythonPackage rec {
pname = "pc-ble-driver-py";
2020-07-13 13:50:05 +02:00
version = "0.14.2";
src = fetchFromGitHub {
owner = "NordicSemiconductor";
repo = "pc-ble-driver-py";
rev = "v${version}";
2020-07-13 13:50:05 +02:00
sha256 = "1zbi3v4jmgq1a3ml34dq48y1hinw2008vwqn30l09r5vqvdgnj8m";
};
2020-07-13 13:50:05 +02:00
# doCheck tries to write to the global python directory to install things
doCheck = false;
2020-07-13 13:50:05 +02:00
nativeBuildInputs = [ cmake swig git setuptools scikit-build ];
buildInputs = [ boost pc-ble-driver ];
2020-07-13 13:50:05 +02:00
propagatedBuildInputs = [ enum34 wrapt future ];
2020-07-13 13:50:05 +02:00
dontUseCmakeConfigure = true;
meta = with stdenv.lib; {
description = "Bluetooth Low Energy nRF5 SoftDevice serialization";
homepage = "https://github.com/NordicSemiconductor/pc-ble-driver-py";
license = licenses.unfreeRedistributable;
platforms = platforms.unix;
maintainers = with maintainers; [ gebner ];
};
}