ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / python-openzwave-mqtt / default.nix
bloba2c76c7d6d54f0ba556893322bee7178045059d8
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , asyncio-mqtt
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "python-openzwave-mqtt";
10   version = "1.4.0";
12   src = fetchFromGitHub {
13     owner = "cgarwood";
14     repo = pname;
15     rev = "v${version}";
16     sha256 = "0zqx00dacs59y4gjr4swrn46c7hrp8a1167bcl270333284m8mqm";
17   };
19   propagatedBuildInputs = [
20     asyncio-mqtt
21   ];
23   checkInputs = [
24     pytestCheckHook
25   ];
27   meta = with lib; {
28     description = "Python wrapper for OpenZWave's MQTT daemon";
29     homepage = "https://github.com/cgarwood/python-openzwave-mqtt";
30     license = licenses.asl20;
31     maintainers = with maintainers; [ hexa ];
32   };