Gns3 build failed

I followed the guide on nixos wiki GNS3 - NixOS Wiki
i use unstable nixpkgs

configuration.nix:

users.users.myuser = {
        packages = with pkgs; [ 
        gns3-gui 
        ];
};
environment.systemPackages = with pkgs; [
        gns3-server
];
error: builder for '/nix/store/86jsc2db9z9gaw6myvdz7cz7am8ak993-gns3-server-2.2.46.drv' failed with exit code 1;
       last 10 log lines:
       >   /nix/store/7wz6hm9i8wljz0hgwz1wqmn2zlbgavrq-python3-3.11.8/lib/python3.11/pathlib.py:871: RuntimeWarning: coroutine 'AsyncioBytesIO.close' was never awaited
       >     self = cls._from_parts(args)
       >   Enable tracemalloc to get traceback where the object was allocated.
       >   See https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings for more info.
       >
       > -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
       > =========================== short test summary info ============================
       > FAILED tests/compute/qemu/test_qemu_manager.py::test_create_image_with_not_supported_characters_by_filesystem - UnicodeEncodeError: 'error' codec can't encode characters in position 1-1: ...
       > = 1 failed, 901 passed, 1 skipped, 1 deselected, 449 warnings, 3 rerun in 126.80s (0:02:06) =
       > /nix/store/c8dj731bkcdzhgrpawhc8qvdgls4xfjv-stdenv-linux/setup: line 1578: pop_var_context: head of shell_variables not a function context
       For full logs, run 'nix log /nix/store/86jsc2db9z9gaw6myvdz7cz7am8ak993-gns3-server-2.2.46.drv'.
error: 1 dependencies of derivation '/nix/store/d92qqfwmprjws5nlx7rlxfgbd8hwqgqx-gns3-server-2.2.46_fish-completions.drv' failed to build
1 Like

after a while switching between comits in nixpkgs, this commit is the problem

opened up an issue Build failure: GNS3, problem with python · Issue #299447 · NixOS/nixpkgs · GitHub
my temporary fix is revert my nixpkgs back a commit

inputs = {
    nixpkgs = {
      url = "github:nixos/nixpkgs/093051473fd84cce950f574e77754353a5731463";#nixpkgs-unstable";
    };

will wait for answer because i have no idea what to do with it