linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / zigpy-deconz / default.nix
blob0b7c027c0fef9f275714c38e01512bc129b77d0f
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pyserial
5 , pyserial-asyncio
6 , zigpy
7 , pytestCheckHook
8 , pytest-asyncio
9 , asynctest
12 buildPythonPackage rec {
13   pname = "zigpy-deconz";
14   version = "0.12.0";
16   src = fetchFromGitHub {
17     owner = "zigpy";
18     repo = pname;
19     rev = version;
20     sha256 = "sha256-d/yAk8owMu+J1BzlwR5mzF9HkXiE6Kc81AznvsAboy8=";
21   };
23   propagatedBuildInputs = [ pyserial pyserial-asyncio zigpy ];
24   checkInputs = [ pytestCheckHook pytest-asyncio asynctest ];
26   meta = with lib; {
27     description = "Library which communicates with Deconz radios for zigpy";
28     homepage = "https://github.com/zigpy/zigpy-deconz";
29     license = licenses.gpl3Plus;
30     maintainers = with maintainers; [ etu mvnetbiz ];
31     platforms = platforms.linux;
32   };