python3Packages.asyncio-mqtt: 0.10.0 -> 0.11.0

This commit is contained in:
Fabian Affolter 2021-11-09 00:41:12 +01:00
parent 00c34f0af6
commit 98b65cc0a0

View file

@ -8,17 +8,21 @@
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "asyncio_mqtt"; pname = "asyncio-mqtt";
version = "0.10.0"; version = "0.11.0";
format = "setuptools";
src = fetchPypi { src = fetchPypi {
inherit pname version; pname = "asyncio_mqtt";
sha256 = "0s94dvgh1fazycppki5m6f9d60hc4ykhqfznlzpwl4dzknxplpsz"; inherit version;
sha256 = "sha256-uJown3bNA+pLJlorJcCjpMMFosX94gt/2tLAjIkuXLA=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
paho-mqtt paho-mqtt
] ++ lib.optional (pythonOlder "3.7") async_generator; ] ++ lib.optional (pythonOlder "3.7") [
async_generator
];
doCheck = false; # no tests doCheck = false; # no tests