forked from mirrors/nixpkgs
pythonPackages.pc-ble-driver-py: init at 0.11.4
This commit is contained in:
parent
4ca821fbce
commit
ef22dd015d
51
pkgs/development/python-modules/pc-ble-driver-py/default.nix
Normal file
51
pkgs/development/python-modules/pc-ble-driver-py/default.nix
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchpatch, fetchFromGitHub,
|
||||||
|
python, cmake, git, swig, boost, udev,
|
||||||
|
setuptools, enum34, wrapt, future }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pc-ble-driver-py";
|
||||||
|
version = "0.11.4";
|
||||||
|
disabled = python.isPy3k;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "NordicSemiconductor";
|
||||||
|
repo = "pc-ble-driver-py";
|
||||||
|
rev = "v${version}";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
sha256 = "0lgmcnrlcivmawmlcwnn4pdp6afdbnf3fyfgq22xzs6v72m9gp81";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake swig git setuptools ];
|
||||||
|
buildInputs = [ boost udev ];
|
||||||
|
propagatedBuildInputs = [ enum34 wrapt future ];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# build system expects case-insensitive file system
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://patch-diff.githubusercontent.com/raw/NordicSemiconductor/pc-ble-driver-py/pull/84.patch";
|
||||||
|
sha256 = "0ibx5g2bndr5h9sfnx51bk9b62q4jvpdwhxadbnj3da8kvcz13cy";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# do not force static linking of boost
|
||||||
|
sed -i /Boost_USE_STATIC_LIBS/d pc-ble-driver/cmake/*.cmake
|
||||||
|
|
||||||
|
cd python
|
||||||
|
'';
|
||||||
|
|
||||||
|
preBuild = ''
|
||||||
|
pushd ../build
|
||||||
|
cmake ..
|
||||||
|
make -j $NIX_BUILD_CORES
|
||||||
|
popd
|
||||||
|
'';
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -593,6 +593,8 @@ in {
|
||||||
|
|
||||||
pathlib = callPackage ../development/python-modules/pathlib { };
|
pathlib = callPackage ../development/python-modules/pathlib { };
|
||||||
|
|
||||||
|
pc-ble-driver-py = toPythonModule (callPackage ../development/python-modules/pc-ble-driver-py { });
|
||||||
|
|
||||||
pdf2image = callPackage ../development/python-modules/pdf2image { };
|
pdf2image = callPackage ../development/python-modules/pdf2image { };
|
||||||
|
|
||||||
pdfminer = callPackage ../development/python-modules/pdfminer_six { };
|
pdfminer = callPackage ../development/python-modules/pdfminer_six { };
|
||||||
|
|
Loading…
Reference in a new issue