Unverified Commit 834b5524 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.philipstv: 2.1.1 -> 3.0.1 (#459629)

parents 69df49f1 af0f9f88
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
  lib,
  fetchFromGitHub,
  buildPythonPackage,
  pythonOlder,
  poetry-core,
  poetry-dynamic-versioning,
  installShellFiles,
@@ -18,16 +17,14 @@

buildPythonPackage rec {
  pname = "philipstv";
  version = "2.1.1";
  version = "3.0.1";
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "bcyran";
    repo = "philipstv";
    tag = version;
    hash = "sha256-BvQurZls9NjtHhTXLQ9t8fHkAF/QU/c6mmRvNmE0v90=";
    hash = "sha256-9OlPaGruD6HDJArvIOb/pIVw5nqTUleDfxeYp2xBbEA=";
  };

  build-system = [
@@ -65,7 +62,7 @@ buildPythonPackage rec {
  meta = {
    description = "CLI and library to control Philips Android-powered TVs";
    homepage = "https://github.com/bcyran/philipstv";
    changelog = "https://github.com/bcyran/philipstv/releases/tag/${version}";
    changelog = "https://github.com/bcyran/philipstv/releases/tag/${src.tag}";
    license = lib.licenses.mit;
    mainProgram = "philipstv";
    maintainers = with lib.maintainers; [ bcyran ];