depot/third_party/nixpkgs/pkgs/development/python-modules/avea/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

33 lines
680 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, bluepy
}:
buildPythonPackage rec {
pname = "avea";
version = "1.5.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "k0rventen";
repo = pname;
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 ];
};
}