Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pubnubsub-handler / default.nix
blob8d8c8da9620e3c8604a918b2b2aad9d156e070b8
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pubnub
5 , pycryptodomex
6 , requests
7 }:
9 buildPythonPackage rec {
10   pname = "pubnubsub-handler";
11   version = "1.0.9";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "sha256:1c44x19zi709sazgl060nkqa7vbaf3iyhwcnwdykhsbipvp6bscy";
17   };
19   propagatedBuildInputs = [
20     pubnub
21     pycryptodomex
22     requests
23   ];
25   # Project has no tests
26   doCheck = false;
27   pythonImportsCheck = [ "pubnubsubhandler" ];
29   meta = with lib; {
30     description = "PubNub subscription between PubNub and Home Assistant";
31     homepage = "https://github.com/w1ll1am23/pubnubsub-handler";
32     license = with licenses; [ mit ];
33     maintainers = with maintainers; [ fab ];
34   };