Commit 5b1eefc3 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python313Packages.nicegui: 3.6.1 -> 3.7.1

parent 69ecaffa
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -43,17 +43,20 @@

buildPythonPackage (finalAttrs: {
  pname = "nicegui";
  version = "3.6.1";
  version = "3.7.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "zauberzeug";
    repo = "nicegui";
    tag = "v${finalAttrs.version}";
    hash = "sha256-umM2ffkiXWJVU2i17fbtnd+ghEt0uVzop9fNhaRTCWM=";
    hash = "sha256-+hZUGRHK51x4nlcbOOGbW15U6YZgKsxuzZPBad9mjXA=";
  };

  pythonRelaxDeps = [ "requests" ];
  pythonRelaxDeps = [
    "orjson"
    "requests"
  ];

  build-system = [
    poetry-core