Unverified Commit 8922992f authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.pylutron-caseta: 0.27.0 -> 0.28.0 (#508053)

parents 28441f24 fe1f3599
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -13,16 +13,16 @@
  zeroconf,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "pylutron-caseta";
  version = "0.27.0";
  version = "0.28.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "gurumitts";
    repo = "pylutron-caseta";
    tag = "v${version}";
    hash = "sha256-GCLsFEPO4z5Jf8Bi/CChsVqmfZo12UcY1iG6Xbojomo=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-0HH+tEZoMTmvD3z67nJWauQfxoQ/IK1Bxlu1XbWGqI4=";
  };

  build-system = [ hatchling ];
@@ -53,8 +53,8 @@ buildPythonPackage rec {
  meta = {
    description = "Python module to control Lutron Caseta devices";
    homepage = "https://github.com/gurumitts/pylutron-caseta";
    changelog = "https://github.com/gurumitts/pylutron-caseta/blob/v${version}/CHANGELOG.md";
    changelog = "https://github.com/gurumitts/pylutron-caseta/blob/${finalAttrs.src.tag}/CHANGELOG.md";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})