Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
681 B
Nix
33 lines
681 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
bluepy,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "avea";
|
|
version = "1.5.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "k0rventen";
|
|
repo = "avea";
|
|
rev = "v${version}";
|
|
sha256 = "1dirf0zdf4hb941w1dvh97vsvcy4h3w9r8jwdgr1ggmhdf9kfx4v";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|