nixpkgs/pkgs/development/python-modules/avea/default.nix

33 lines
655 B
Nix
Raw Normal View History

2021-01-05 21:17:10 +00:00
{ lib
, buildPythonPackage
, fetchFromGitHub
, bluepy
}:
buildPythonPackage rec {
pname = "avea";
2021-01-18 01:52:56 +00:00
version = "1.5.2";
2021-01-05 21:17:10 +00:00
src = fetchFromGitHub {
owner = "k0rventen";
repo = pname;
rev = "v${version}";
2021-01-18 01:52:56 +00:00
sha256 = "1dirf0zdf4hb941w1dvh97vsvcy4h3w9r8jwdgr1ggmhdf9kfx4v";
2021-01-05 21:17:10 +00:00
};
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 ];
};
}