Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 097cd34db0c2
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5c936d4ce74a
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Jan 2, 2021

  1. Copy the full SHA
    392f059 View commit details
  2. Copy the full SHA
    52b0d1d View commit details
  3. Merge pull request #108244 from fabaff/aiopulse

    python3Packages.aiopulse: init at 0.4.2
    mweinelt authored Jan 2, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5c936d4 View commit details
Showing with 40 additions and 1 deletion.
  1. +37 −0 pkgs/development/python-modules/aiopulse/default.nix
  2. +1 −1 pkgs/servers/home-assistant/component-packages.nix
  3. +2 −0 pkgs/top-level/python-packages.nix
37 changes: 37 additions & 0 deletions pkgs/development/python-modules/aiopulse/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 1 addition & 1 deletion pkgs/servers/home-assistant/component-packages.nix
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@
"abode" = ps: with ps; [ abodepy ];
"accuweather" = ps: with ps; [ accuweather ];
"acer_projector" = ps: with ps; [ pyserial ];
"acmeda" = ps: with ps; [ ]; # missing inputs: aiopulse
"acmeda" = ps: with ps; [ aiopulse ];
"actiontec" = ps: with ps; [ ];
"adguard" = ps: with ps; [ adguardhome ];
"ads" = ps: with ps; [ pyads ];
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -243,6 +243,8 @@ in {

aioprocessing = callPackage ../development/python-modules/aioprocessing { };

aiopulse = callPackage ../development/python-modules/aiopulse { };

aioredis = callPackage ../development/python-modules/aioredis { };

aioresponses = callPackage ../development/python-modules/aioresponses { };