biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pylgnetcast / default.nix
bloba017c49d574b20b1c9cceb5ca811329075654f7a
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   requests,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "pylgnetcast";
11   version = "0.3.9";
12   format = "setuptools";
14   disabled = pythonOlder "3.6";
16   src = fetchFromGitHub {
17     owner = "Drafteed";
18     repo = "python-lgnetcast";
19     rev = "refs/tags/v${version}";
20     hash = "sha256-5lzLknuGLQryLCc4YQJn8AGuWTiSM90+8UTQ/WYfASM=";
21   };
23   propagatedBuildInputs = [ requests ];
25   # Project has no tests
26   doCheck = false;
28   pythonImportsCheck = [ "pylgnetcast" ];
30   meta = with lib; {
31     description = "Python API client for the LG Smart TV running NetCast 3 or 4";
32     homepage = "https://github.com/Drafteed/python-lgnetcast";
33     changelog = "https://github.com/Drafteed/python-lgnetcast/releases/tag/v${version}";
34     license = with licenses; [ mit ];
35     maintainers = with maintainers; [ fab ];
36   };