depot/third_party/nixpkgs/pkgs/development/python-modules/aiopulse/default.nix
Default email ffc78d3539 Project import generated by Copybara.
GitOrigin-RevId: d9dba88d08a9cdf483c3d45f0d7220cf97a4ce64
2021-01-05 19:05:55 +02:00

37 lines
961 B
Nix

{ 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 ];
};
}