ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / asyncio_mqtt / default.nix
blob6a52ff4fd2d1728a0553ae1e0660d7cb6b3a8703
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , paho-mqtt
5 , pythonOlder
6 , typing-extensions
7 }:
9 buildPythonPackage rec {
10   pname = "asyncio-mqtt";
11   version = "0.13.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "sbtinstruments";
18     repo = pname;
19     rev = "refs/tags/v${version}";
20     hash = "sha256-On4N5KPnbwYrJguWwBdrnaNq58ZeGIPYSFzIRBfojpQ=";
21   };
23   propagatedBuildInputs = [
24     paho-mqtt
25   ] ++ lib.optionals (pythonOlder "3.10") [
26     typing-extensions
27   ];
29   # Module will have tests starting with > 0.13.0
30   doCheck = false;
32   pythonImportsCheck = [
33     "asyncio_mqtt"
34   ];
36   meta = with lib; {
37     description = "Idomatic asyncio wrapper around paho-mqtt";
38     homepage = "https://github.com/sbtinstruments/asyncio-mqtt";
39     license = licenses.bsd3;
40     changelog = "https://github.com/sbtinstruments/asyncio-mqtt/blob/master/CHANGELOG.md";
41     maintainers = with maintainers; [ hexa ];
42   };