python311Packages.ninebot-ble: init at 0.0.6

Ninebot scooter BLE client

https://github.com/ownbee/ninebot-ble
This commit is contained in:
Fabian Affolter 2023-11-26 11:47:32 +01:00
parent b9d0453d1b
commit 50b6184a33
2 changed files with 57 additions and 0 deletions

View file

@ -0,0 +1,55 @@
{ lib
, bleak
, bleak-retry-connector
, bluetooth-data-tools
, bluetooth-sensor-state-data
, buildPythonPackage
, fetchFromGitHub
, miauth
, pythonOlder
, setuptools
, wheel
}:
buildPythonPackage rec {
pname = "ninebot-ble";
version = "0.0.6";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "ownbee";
repo = "ninebot-ble";
rev = "refs/tags/${version}";
hash = "sha256-gA3VTs45vVpO0Iy8MbvvDf9j99vsFzrkADaJEslx6y0=";
};
nativeBuildInputs = [
setuptools
wheel
];
propagatedBuildInputs = [
bleak
bleak-retry-connector
bluetooth-data-tools
bluetooth-sensor-state-data
miauth
];
# Module has no test
doCheck = false;
pythonImportsCheck = [
"ninebot_ble"
];
meta = with lib; {
description = "Ninebot scooter BLE client";
homepage = "https://github.com/ownbee/ninebot-ble";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -7252,6 +7252,8 @@ self: super: with self; {
nine = callPackage ../development/python-modules/nine { };
ninebot-ble = callPackage ../development/python-modules/ninebot-ble { };
ninja = callPackage ../development/python-modules/ninja { inherit (pkgs) ninja; };
nipy = callPackage ../development/python-modules/nipy { };