From c74e976d7327a4a61cced22c61c7e8c252aa432b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 26 Aug 2022 08:51:53 +0200 Subject: [PATCH] python310Packages.thermobeacon-ble: init at 0.3.1 --- .../thermobeacon-ble/default.nix | 55 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 57 insertions(+) create mode 100644 pkgs/development/python-modules/thermobeacon-ble/default.nix diff --git a/pkgs/development/python-modules/thermobeacon-ble/default.nix b/pkgs/development/python-modules/thermobeacon-ble/default.nix new file mode 100644 index 000000000000..db9f5746ba6c --- /dev/null +++ b/pkgs/development/python-modules/thermobeacon-ble/default.nix @@ -0,0 +1,55 @@ +{ lib +, bluetooth-data-tools +, bluetooth-sensor-state-data +, buildPythonPackage +, fetchFromGitHub +, poetry-core +, pytestCheckHook +, pythonOlder +, sensor-state-data +}: + +buildPythonPackage rec { + pname = "thermobeacon-ble"; + version = "0.3.1"; + format = "pyproject"; + + disabled = pythonOlder "3.9"; + + src = fetchFromGitHub { + owner = "bluetooth-devices"; + repo = pname; + rev = "v${version}"; + hash = "sha256-OvSvhOcJSThKyLXHhiwEZtCrYt6+KB5iArUKjfoi2OI="; + }; + + nativeBuildInputs = [ + poetry-core + ]; + + propagatedBuildInputs = [ + bluetooth-data-tools + bluetooth-sensor-state-data + sensor-state-data + ]; + + checkInputs = [ + pytestCheckHook + ]; + + postPatch = '' + substituteInPlace pyproject.toml \ + --replace " --cov=thermobeacon_ble --cov-report=term-missing:skip-covered" "" + ''; + + pythonImportsCheck = [ + "thermobeacon_ble" + ]; + + meta = with lib; { + description = "Library for Thermobeacon BLE devices"; + homepage = "https://github.com/bluetooth-devices/thermobeacon-ble"; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 510668a9305f..a1045e102845 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10805,6 +10805,8 @@ in { cudnnSupport = false; }; + thermobeacon-ble = callPackage ../development/python-modules/thermobeacon-ble { }; + thespian = callPackage ../development/python-modules/thespian { }; thinc = callPackage ../development/python-modules/thinc {