depot/third_party/nixpkgs/pkgs/development/python-modules/avea/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

32 lines
655 B
Nix

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