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

python3Packages.tilt-ble: 0.3.1 -> 1.0.1 (#451488)

parents ab628956 50ceb924
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -7,22 +7,19 @@
  poetry-core,
  pytest-cov-stub,
  pytestCheckHook,
  pythonOlder,
  sensor-state-data,
}:

buildPythonPackage rec {
  pname = "tilt-ble";
  version = "0.3.1";
  version = "1.0.1";
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "Bluetooth-Devices";
    repo = "tilt-ble";
    tag = "v${version}";
    hash = "sha256-sT8tMsA9w3HwM/wPsqKTgHWvhf83zxQ5P/bQHlqolH4=";
    hash = "sha256-u40xpjwxOdM7FUIPQG9g8q86cZHv21HCxbtnvAAgfgU=";
  };

  build-system = [ poetry-core ];
@@ -43,7 +40,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Library for Tilt BLE devices";
    homepage = "https://github.com/Bluetooth-Devices/tilt-ble";
    changelog = "https://github.com/Bluetooth-Devices/tilt-ble/releases/tag/v${version}";
    changelog = "https://github.com/Bluetooth-Devices/tilt-ble/releases/tag/${src.tag}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };