python3Packages.avea: init at 1.5.1

This commit is contained in:
Fabian Affolter 2021-01-05 22:17:10 +01:00
parent d9dba88d08
commit ed17f6a6fc
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, bluepy
}:
buildPythonPackage rec {
pname = "avea";
version = "1.5.1";
src = fetchFromGitHub {
owner = "k0rventen";
repo = pname;
rev = "v${version}";
sha256 = "13s21dnhbh10dd60xq2cklp5jyv46rpl3nivn1imcswp02930ihz";
};
propagatedBuildInputs = [
bluepy
];
# no tests are present
doCheck = false;
pythonImportsCheck = [ "avea" ];
meta = with lib; {
description = "Python module for interacting with Elgato's Avea bulb";
homepage = "https://github.com/k0rventen/avea";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -516,6 +516,8 @@ in {
av = callPackage ../development/python-modules/av { inherit (pkgs) pkgconfig; };
avea = callPackage ../development/python-modules/avea { };
avro3k = callPackage ../development/python-modules/avro3k { };
avro = callPackage ../development/python-modules/avro { };