Unverified Commit c81ebe69 authored by Robert Schütz's avatar Robert Schütz Committed by Martin Weinelt
Browse files
parent 8e01bc65
Loading
Loading
Loading
Loading
+3 −9
Original line number Diff line number Diff line
@@ -5,8 +5,6 @@
  click,
  click-log,
  fetchFromGitHub,
  pure-pcapy3,
  pyserial-asyncio,
  pytest-asyncio,
  pytest-timeout,
  pytestCheckHook,
@@ -18,16 +16,14 @@

buildPythonPackage rec {
  pname = "bellows";
  version = "0.44.0";
  version = "0.44.1";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "zigpy";
    repo = "bellows";
    tag = version;
    hash = "sha256-9CuZGorTqay09ZHrUDoorYew8vvDV6pyxMuik7/QKJ4=";
    hash = "sha256-LxwKS4jh/ehYGxhU4lpmzXBWGacLtjq6c/lhBybLaRE=";
  };

  postPatch = ''
@@ -41,8 +37,6 @@ buildPythonPackage rec {
  dependencies = [
    click
    click-log
    pure-pcapy3
    pyserial-asyncio
    voluptuous
    zigpy
  ] ++ lib.optionals (pythonOlder "3.11") [ async-timeout ];
@@ -58,7 +52,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python module to implement EZSP for EmberZNet devices";
    homepage = "https://github.com/zigpy/bellows";
    changelog = "https://github.com/zigpy/bellows/releases/tag/${version}";
    changelog = "https://github.com/zigpy/bellows/releases/tag/${src.tag}";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ mvnetbiz ];
    mainProgram = "bellows";