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

python313Packages.uiprotect: 8.0.0 -> 10.0.1 (#482491)

parents c251a636 30ae2e3f
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -38,16 +38,16 @@
  pytestCheckHook,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "uiprotect";
  version = "8.0.0";
  version = "10.0.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "uilibs";
    repo = "uiprotect";
    tag = "v${version}";
    hash = "sha256-YYF7YERl9pKpnfD1Q00NlL8zWfEohMBO3UuidedLHn0=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-pxxl/NhvJh2Ur8g+25padewvshqSUZmB7vpGmVlH15k=";
  };

  build-system = [ poetry-core ];
@@ -97,8 +97,8 @@ buildPythonPackage rec {
  meta = {
    description = "Python API for UniFi Protect (Unofficial)";
    homepage = "https://github.com/uilibs/uiprotect";
    changelog = "https://github.com/uilibs/uiprotect/blob/${src.tag}/CHANGELOG.md";
    changelog = "https://github.com/uilibs/uiprotect/blob/${finalAttrs.src.tag}/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ hexa ];
  };
}
})