Unverified Commit f4256365 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python313Packages.autarco: 3.1.0 -> 3.2.0 (#447919)

parents 99a56f70 5d876a41
Loading
Loading
Loading
Loading
+3 −8
Original line number Diff line number Diff line
@@ -10,27 +10,22 @@
  pytest-asyncio,
  pytest-cov-stub,
  pytestCheckHook,
  pythonOlder,
  syrupy,
  yarl,
}:

buildPythonPackage rec {
  pname = "autarco";
  version = "3.1.0";
  version = "3.2.0";
  pyproject = true;

  disabled = pythonOlder "3.11";

  src = fetchFromGitHub {
    owner = "klaasnicolaas";
    repo = "python-autarco";
    tag = "v${version}";
    hash = "sha256-zSqIEtQucrrAFEY7pBJ14Cevq8xbcGOheEmEE7Jd4qk=";
    hash = "sha256-+j7limAYKFj9DZjetXnaFKIolitRppU1QLFRB94DlgE=";
  };

  pythonRelaxDeps = [ "orjson" ];

  postPatch = ''
    # Upstream doesn't set a version for the pyproject.toml
    substituteInPlace pyproject.toml \
@@ -61,7 +56,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Module for the Autarco Inverter";
    homepage = "https://github.com/klaasnicolaas/python-autarco";
    changelog = "https://github.com/klaasnicolaas/python-autarco/releases/tag/v${version}";
    changelog = "https://github.com/klaasnicolaas/python-autarco/releases/tag/${src.tag}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };