Unverified Commit 4d312c06 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.goodwe: 0.4.9 -> 0.4.10 (#506715)

parents 02dc12c1 66026e7f
Loading
Loading
Loading
Loading
+2 −11
Original line number Diff line number Diff line
@@ -2,31 +2,22 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  fetchpatch,
  pytestCheckHook,
  setuptools,
}:

buildPythonPackage (finalAttrs: {
  pname = "goodwe";
  version = "0.4.9";
  version = "0.4.10";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "marcelblijleven";
    repo = "goodwe";
    tag = "v${finalAttrs.version}";
    hash = "sha256-WHLvfAlwhcA0JFSWfwUPsJ9dWmadIjyonXEP3Bb6WKE=";
    hash = "sha256-2wnfc+W1lhUgvWa1iwHxJu4WGZHaXvmxgtBAkTJHJ3E=";
  };

  patches = [
    (fetchpatch {
      name = "python-3.14.patch";
      url = "https://github.com/marcelblijleven/goodwe/commit/3a1e57109e61860f59a03626a7e21ee44bbb3639.patch";
      hash = "sha256-ZYmEdWpOjrU61HAyhNG04oTrSH8F+LUEUskxKkoufu4=";
    })
  ];

  build-system = [ setuptools ];

  nativeCheckInputs = [ pytestCheckHook ];