forked from mirrors/nixpkgs
46 lines
855 B
Nix
46 lines
855 B
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, bluez
|
|
, gattlib
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pybluez";
|
|
version = "unstable-2022-01-28";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "5096047f90a1f6a74ceb250aef6243e144170f92";
|
|
hash = "sha256-GA58DfCFaVzZQA1HYpGQ68bznrt4SX1ojyOVn8hyCGo=";
|
|
};
|
|
|
|
buildInputs = [
|
|
bluez
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
gattlib
|
|
];
|
|
|
|
# there are no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"bluetooth"
|
|
"bluetooth.ble"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Bluetooth Python extension module";
|
|
homepage = "https://github.com/pybluez/pybluez";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ leenaars ];
|
|
broken = stdenv.isDarwin; # requires pyobjc-core, pyobjc-framework-Cocoa
|
|
};
|
|
|
|
}
|