Loading pkgs/development/python-modules/sensirion-ble/default.nix 0 → 100644 +52 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , hatchling , bluetooth-data-tools , bluetooth-sensor-state-data , home-assistant-bluetooth , sensor-state-data , pythonOlder }: buildPythonPackage rec { pname = "sensirion-ble"; version = "0.1.0"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "akx"; repo = "sensirion-ble"; rev = "refs/tags/v${version}"; hash = "sha256-7l76/Bci1ztt2CfwytLOySK6IL8IDijpB0AYhksRP7o="; }; postPatch = '' substituteInPlace pyproject.toml \ --replace " --cov=sensirion_ble --cov-report=term-missing:skip-covered" "" ''; nativeBuildInputs = [ hatchling ]; propagatedBuildInputs = [ bluetooth-data-tools bluetooth-sensor-state-data home-assistant-bluetooth sensor-state-data ]; pythonImportsCheck = [ "sensirion_ble" ]; meta = with lib; { description = "Parser for Sensirion BLE devices"; homepage = "https://github.com/akx/sensirion-ble"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11040,6 +11040,8 @@ self: super: with self; { sense-energy = callPackage ../development/python-modules/sense-energy { }; sensirion-ble = callPackage ../development/python-modules/sensirion-ble { }; sensor-state-data = callPackage ../development/python-modules/sensor-state-data { }; sensorpro-ble = callPackage ../development/python-modules/sensorpro-ble { }; Loading Loading
pkgs/development/python-modules/sensirion-ble/default.nix 0 → 100644 +52 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , hatchling , bluetooth-data-tools , bluetooth-sensor-state-data , home-assistant-bluetooth , sensor-state-data , pythonOlder }: buildPythonPackage rec { pname = "sensirion-ble"; version = "0.1.0"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "akx"; repo = "sensirion-ble"; rev = "refs/tags/v${version}"; hash = "sha256-7l76/Bci1ztt2CfwytLOySK6IL8IDijpB0AYhksRP7o="; }; postPatch = '' substituteInPlace pyproject.toml \ --replace " --cov=sensirion_ble --cov-report=term-missing:skip-covered" "" ''; nativeBuildInputs = [ hatchling ]; propagatedBuildInputs = [ bluetooth-data-tools bluetooth-sensor-state-data home-assistant-bluetooth sensor-state-data ]; pythonImportsCheck = [ "sensirion_ble" ]; meta = with lib; { description = "Parser for Sensirion BLE devices"; homepage = "https://github.com/akx/sensirion-ble"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11040,6 +11040,8 @@ self: super: with self; { sense-energy = callPackage ../development/python-modules/sense-energy { }; sensirion-ble = callPackage ../development/python-modules/sensirion-ble { }; sensor-state-data = callPackage ../development/python-modules/sensor-state-data { }; sensorpro-ble = callPackage ../development/python-modules/sensorpro-ble { }; Loading