Commit 06b1088a authored by Fabian Affolter's avatar Fabian Affolter Committed by zowoq
Browse files

python313Packages.govee-ble: modernize

- fix license
parent 9887db70
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -8,7 +8,6 @@
  poetry-core,
  pytest-cov-stub,
  pytestCheckHook,
  pythonOlder,
  sensor-state-data,
}:

@@ -17,8 +16,6 @@ buildPythonPackage rec {
  version = "1.0.0";
  pyproject = true;

  disabled = pythonOlder "3.10";

  src = fetchFromGitHub {
    owner = "Bluetooth-Devices";
    repo = "govee-ble";
@@ -42,11 +39,11 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "govee_ble" ];

  meta = with lib; {
  meta = {
    description = "Library for Govee BLE devices";
    homepage = "https://github.com/Bluetooth-Devices/govee-ble";
    changelog = "https://github.com/bluetooth-devices/govee-ble/blob/${src.tag}/CHANGELOG.md";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ fab ];
  };
}