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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
790 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, websockets
}:
buildPythonPackage rec {
pname = "aiowebostv";
version = "0.2.1";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-r/XdxF7/g6uDQIATi/OC6lNTUtBZg1jdgZHZilPPFNc=";
};
propagatedBuildInputs = [
websockets
];
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [
"aiowebostv"
];
meta = with lib; {
description = "Module to interact with LG webOS based TV devices";
homepage = "https://github.com/home-assistant-libs/aiowebostv";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}