Merge pull request #108244 from fabaff/aiopulse
python3Packages.aiopulse: init at 0.4.2
This commit is contained in:
commit
5c936d4ce7
37
pkgs/development/python-modules/aiopulse/default.nix
Normal file
37
pkgs/development/python-modules/aiopulse/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, async-timeout
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "aiopulse";
|
||||||
|
version = "0.4.2";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0fnscm27l77c8cd7jhbn35axyalq61kksy3fcqzv21fz55lklsm0";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
async-timeout
|
||||||
|
];
|
||||||
|
|
||||||
|
# tests are not present
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "aiopulse" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python Rollease Acmeda Automate Pulse hub protocol implementation";
|
||||||
|
longDescription = ''
|
||||||
|
The Rollease Acmeda Pulse Hub is a WiFi hub that communicates with
|
||||||
|
Rollease Acmeda Automate roller blinds via a proprietary RF protocol.
|
||||||
|
This module communicates over a local area network using a propriatery
|
||||||
|
binary protocol to issues commands to the Pulse Hub.
|
||||||
|
'';
|
||||||
|
homepage = "https://github.com/atmurray/aiopulse";
|
||||||
|
license = with licenses; [ asl20 ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -7,7 +7,7 @@
|
|||||||
"abode" = ps: with ps; [ abodepy ];
|
"abode" = ps: with ps; [ abodepy ];
|
||||||
"accuweather" = ps: with ps; [ accuweather ];
|
"accuweather" = ps: with ps; [ accuweather ];
|
||||||
"acer_projector" = ps: with ps; [ pyserial ];
|
"acer_projector" = ps: with ps; [ pyserial ];
|
||||||
"acmeda" = ps: with ps; [ ]; # missing inputs: aiopulse
|
"acmeda" = ps: with ps; [ aiopulse ];
|
||||||
"actiontec" = ps: with ps; [ ];
|
"actiontec" = ps: with ps; [ ];
|
||||||
"adguard" = ps: with ps; [ adguardhome ];
|
"adguard" = ps: with ps; [ adguardhome ];
|
||||||
"ads" = ps: with ps; [ pyads ];
|
"ads" = ps: with ps; [ pyads ];
|
||||||
|
@ -243,6 +243,8 @@ in {
|
|||||||
|
|
||||||
aioprocessing = callPackage ../development/python-modules/aioprocessing { };
|
aioprocessing = callPackage ../development/python-modules/aioprocessing { };
|
||||||
|
|
||||||
|
aiopulse = callPackage ../development/python-modules/aiopulse { };
|
||||||
|
|
||||||
aioredis = callPackage ../development/python-modules/aioredis { };
|
aioredis = callPackage ../development/python-modules/aioredis { };
|
||||||
|
|
||||||
aioresponses = callPackage ../development/python-modules/aioresponses { };
|
aioresponses = callPackage ../development/python-modules/aioresponses { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user