Unverified Commit d85d5f17 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #212604 from fabaff/ha-philipsjs-bump

python310Packages.ha-philipsjs: 2.9.0 -> 3.0.0 
parents 4a07ab32 330e4a75
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@

buildPythonPackage rec {
  pname = "ha-philipsjs";
  version = "2.9.0";
  version = "3.0.0";
  format = "setuptools";

  disabled = pythonOlder "3.8";
@@ -20,8 +20,8 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "danielperna84";
    repo = pname;
    rev = version;
    sha256 = "sha256-B2AQoVyoG6wyE9pTWf/ASQd8iZfIrjUr078rSkoARf0=";
    rev = "refs/tags/${version}";
    hash = "sha256-iJxu+TdgDHMnLuNTFj0UC8V76x3nAgGqswMLDSgmDmQ=";
  };

  propagatedBuildInputs = [
@@ -43,6 +43,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python library to interact with Philips TVs with jointSPACE API";
    homepage = "https://github.com/danielperna84/ha-philipsjs";
    changelog = "https://github.com/danielperna84/ha-philipsjs/releases/tag/${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };