python3Packages.pubnubsub-handler: init at 1.0.9
This commit is contained in:
parent
7c1f97917f
commit
7a6701fbfd
@ -0,0 +1,34 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pubnub
|
||||||
|
, pycryptodomex
|
||||||
|
, requests
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pubnubsub-handler";
|
||||||
|
version = "1.0.9";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "sha256:1c44x19zi709sazgl060nkqa7vbaf3iyhwcnwdykhsbipvp6bscy";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
pubnub
|
||||||
|
pycryptodomex
|
||||||
|
requests
|
||||||
|
];
|
||||||
|
|
||||||
|
# Project has no tests
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "pubnubsubhandler" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "PubNub subscription between PubNub and Home Assistant";
|
||||||
|
homepage = "https://github.com/w1ll1am23/pubnubsub-handler";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -5023,6 +5023,10 @@ in {
|
|||||||
|
|
||||||
publicsuffix = callPackage ../development/python-modules/publicsuffix { };
|
publicsuffix = callPackage ../development/python-modules/publicsuffix { };
|
||||||
|
|
||||||
|
pubnub = callPackage ../development/python-modules/pubnub { };
|
||||||
|
|
||||||
|
pubnubsub-handler = callPackage ../development/python-modules/pubnubsub-handler { };
|
||||||
|
|
||||||
pudb = callPackage ../development/python-modules/pudb { };
|
pudb = callPackage ../development/python-modules/pudb { };
|
||||||
|
|
||||||
pulp = callPackage ../development/python-modules/pulp { };
|
pulp = callPackage ../development/python-modules/pulp { };
|
||||||
@ -6075,6 +6079,8 @@ in {
|
|||||||
|
|
||||||
pytest-twisted = callPackage ../development/python-modules/pytest-twisted { };
|
pytest-twisted = callPackage ../development/python-modules/pytest-twisted { };
|
||||||
|
|
||||||
|
pytest-vcr = callPackage ../development/python-modules/pytest-vcr { };
|
||||||
|
|
||||||
pytest-virtualenv = callPackage ../development/python-modules/pytest-virtualenv { };
|
pytest-virtualenv = callPackage ../development/python-modules/pytest-virtualenv { };
|
||||||
|
|
||||||
pytest-warnings = callPackage ../development/python-modules/pytest-warnings { };
|
pytest-warnings = callPackage ../development/python-modules/pytest-warnings { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user