My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pybluez/default.nix

45 lines
855 B

{ 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
};
}