Unverified Commit 122acf0b authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python313Packages.pyenphase: 2.4.2 -> 2.4.3 (#480062)

parents 67bf0f2e 59b14d5b
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -20,16 +20,16 @@
  tenacity,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "pyenphase";
  version = "2.4.2";
  version = "2.4.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "pyenphase";
    repo = "pyenphase";
    tag = "v${version}";
    hash = "sha256-WpfiRACZ08M9EQbjfM5dNz2cFFGd7OlG/SB6F128Rcs=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-JJtkfN3udslcNYMXGGRXjyPqP3hjix9bg7GcGNOoMbM=";
  };

  pythonRelaxDeps = [ "tenacity" ];
@@ -67,8 +67,8 @@ buildPythonPackage rec {
  meta = {
    description = "Library to control enphase envoy";
    homepage = "https://github.com/pyenphase/pyenphase";
    changelog = "https://github.com/pyenphase/pyenphase/blob/${src.tag}/CHANGELOG.md";
    changelog = "https://github.com/pyenphase/pyenphase/blob/${finalAttrs.src.tag}/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})