python3Packages.asyncio-mqtt: 0.10.0 -> 0.11.0
This commit is contained in:
parent
00c34f0af6
commit
98b65cc0a0
1 changed files with 9 additions and 5 deletions
|
@ -8,17 +8,21 @@
|
|||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "asyncio_mqtt";
|
||||
version = "0.10.0";
|
||||
pname = "asyncio-mqtt";
|
||||
version = "0.11.0";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0s94dvgh1fazycppki5m6f9d60hc4ykhqfznlzpwl4dzknxplpsz";
|
||||
pname = "asyncio_mqtt";
|
||||
inherit version;
|
||||
sha256 = "sha256-uJown3bNA+pLJlorJcCjpMMFosX94gt/2tLAjIkuXLA=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
paho-mqtt
|
||||
] ++ lib.optional (pythonOlder "3.7") async_generator;
|
||||
] ++ lib.optional (pythonOlder "3.7") [
|
||||
async_generator
|
||||
];
|
||||
|
||||
doCheck = false; # no tests
|
||||
|
||||
|
|
Loading…
Reference in a new issue