Unverified Commit d934e640 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.govee-ble: 1.1.0 -> 1.2.0 (#495467)

parents 49aecf2c 3c69cee4
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -11,16 +11,16 @@
  sensor-state-data,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "govee-ble";
  version = "1.1.0";
  version = "1.2.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Bluetooth-Devices";
    repo = "govee-ble";
    tag = "v${version}";
    hash = "sha256-fIQZd25NlkFE24d2ro5N4liFneH2SdGBw4gkJKoSqnk=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-+qzSNwV+2h75LVly7kZaaulKQp5Hp0N8k05BauN1TXo=";
  };

  build-system = [ poetry-core ];
@@ -42,8 +42,8 @@ buildPythonPackage rec {
  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";
    changelog = "https://github.com/bluetooth-devices/govee-ble/blob/${finalAttrs.src.tag}/CHANGELOG.md";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})