Unverified Commit 7ed4b718 authored by Martin Weinelt's avatar Martin Weinelt
Browse files
parent b79c07bd
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
  anyio,
  buildPythonPackage,
  fetchFromGitHub,
  paho-mqtt,
  paho-mqtt_2,
  poetry-core,
  poetry-dynamic-versioning,
  pytestCheckHook,
@@ -13,7 +13,7 @@

buildPythonPackage rec {
  pname = "aiomqtt";
  version = "2.0.1";
  version = "2.3.0";
  pyproject = true;

  disabled = pythonOlder "3.8";
@@ -22,7 +22,7 @@ buildPythonPackage rec {
    owner = "sbtinstruments";
    repo = "aiomqtt";
    tag = "v${version}";
    hash = "sha256-bV1elEO1518LVLwNDN5pzjxRgcG34K1XUsK7fTw8h+8=";
    hash = "sha256-a0z4Tv0x25Qd/ZMxUZmtYqrwlD7MugfHdsx+TGfBCYY=";
  };

  build-system = [
@@ -31,7 +31,7 @@ buildPythonPackage rec {
  ];

  dependencies = [
    paho-mqtt
    paho-mqtt_2
    typing-extensions
  ];

@@ -50,7 +50,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Idiomatic asyncio MQTT client, wrapped around paho-mqtt";
    homepage = "https://github.com/sbtinstruments/aiomqtt";
    changelog = "https://github.com/sbtinstruments/aiomqtt/blob/${src.rev}/CHANGELOG.md";
    changelog = "https://github.com/sbtinstruments/aiomqtt/blob/${src.tag}/CHANGELOG.md";
    license = licenses.bsd3;
    maintainers = [ ];
  };