Build · 41642fa6Finished · errors ·
Pause
•••
Download raw log ↓
← Earlier output4.4 MiB captured
python3.12-setproctitle-1.3.5
        assert f.read().rstrip() == "hello" * 3
    """
        )
tests/setthreadtitle_test.py:33: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
script = '\nfrom glob import glob\nimport setproctitle\nsetproctitle.setthreadtitle("hello" * 10)\n\n(fn,) = glob("/proc/self/task/*/comm")\nwith open(fn) as f:\n    assert f.read().rstrip() == "hello" * 3\n'
args = None
executable = '/nix/store/l4f8rn6y0jymzbmr08rayygy4xvchpxb-python3-3.12.5-x86_64-unknown-linux-gnufilc0/bin/python3.12'
env = None
    def run_script(script=None, args=None, executable=None, env=None):
        """run a script in a separate process.
        if the script completes successfully, return its ``stdout``,
        else fail the test.
        """
        if executable is None:
            executable = sys.executable
        cmdline = str(executable)
        if args:
            cmdline = cmdline + " " + args
        proc = sp.Popen(
            cmdline,
            stdin=sp.PIPE,
            stdout=sp.PIPE,
            stderr=sp.PIPE,
            env=env,
            shell=True,
            close_fds=True,
        )
        out, err = proc.communicate(script and script.encode())
        if 0 != proc.returncode:
            if out:
                print(out.decode("utf8", "replace"), file=sys.stdout)
            if err:
                print(err.decode("utf8", "replace"), file=sys.stderr)
>           pytest.fail("test script failed")
E           Failed: test script failed
tests/conftest.py:154: Failed
----------------------------- Captured stderr call -----------------------------
Traceback (most recent call last):
  File "<stdin>", line 6, in <module>
ValueError: too many values to unpack (expected 1)
____________________________ test_set_threads_title ____________________________
    def test_set_threads_title():
>       run_script(
            """
    import time
    import threading
    from glob import glob
    (fn,) = glob("/proc/self/task/*/comm")
    with open(fn) as f:
        orig = f.read().rstrip()
    import setproctitle
    def worker(title):
        setproctitle.setthreadtitle(title)
        while 1:
            time.sleep(1)
    t1 = threading.Thread(target=worker, args=('reader',), daemon=True)
    t2 = threading.Thread(target=worker, args=('writer',), daemon=True)
    t1.start()
    t2.start()
    comms = []
    for fn in glob("/proc/self/task/*/comm"):
        with open(fn) as f:
            comms.append(f.read().rstrip())
    comms.sort()
    assert comms == sorted([orig, "reader", "writer"])
    """
        )
tests/setthreadtitle_test.py:47: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
script = '\nimport time\nimport threading\nfrom glob import glob\n\n(fn,) = glob("/proc/self/task/*/comm")\nwith open(fn) as f:...) as f:\n        comms.append(f.read().rstrip())\n\ncomms.sort()\nassert comms == sorted([orig, "reader", "writer"])\n'
args = None
executable = '/nix/store/l4f8rn6y0jymzbmr08rayygy4xvchpxb-python3-3.12.5-x86_64-unknown-linux-gnufilc0/bin/python3.12'
env = None
    def run_script(script=None, args=None, executable=None, env=None):
        """run a script in a separate process.
        if the script completes successfully, return its ``stdout``,
        else fail the test.
        """
        if executable is None:
            executable = sys.executable
        cmdline = str(executable)
        if args:
            cmdline = cmdline + " " + args
        proc = sp.Popen(
            cmdline,
            stdin=sp.PIPE,
            stdout=sp.PIPE,
            stderr=sp.PIPE,
            env=env,
            shell=True,
            close_fds=True,
        )
        out, err = proc.communicate(script and script.encode())
        if 0 != proc.returncode:
            if out:
                print(out.decode("utf8", "replace"), file=sys.stdout)
            if err:
                print(err.decode("utf8", "replace"), file=sys.stderr)
>           pytest.fail("test script failed")
E           Failed: test script failed
tests/conftest.py:154: Failed
----------------------------- Captured stderr call -----------------------------
Traceback (most recent call last):
  File "<stdin>", line 6, in <module>
ValueError: too many values to unpack (expected 1)
=========================== short test summary info ============================
FAILED tests/setthreadtitle_test.py::test_thread_title_unchanged - AssertionError: assert 'python3.12\n...npython3.12\n' == 'python3.12\n'
FAILED tests/setthreadtitle_test.py::test_set_thread_title - Failed: test script failed
FAILED tests/setthreadtitle_test.py::test_set_threads_title - Failed: test script failed
==================== 3 failed, 3 passed, 2 skipped in 0.86s ====================
python3.12-types-futures-3.3.8
Build started
python3.12-setproctitle-1.3.5
error: Cannot build '/nix/store/ym8j9nq98nv65idcnql045lfmk273icm-python3.12-setproctitle-1.3.5-x86_64-unknown-linux-gnufilc0.drv'.
       Reason: builder failed with exit code 1.
       Output paths:
         /nix/store/jcryanr5x0bnrcii0mr072sm9m0i21a2-python3.12-setproctitle-1.3.5-x86_64-unknown-linux-gnufilc0-dist
         /nix/store/xcyb082sjjk4nnpcylf03zm8b5g2g44q-python3.12-setproctitle-1.3.5-x86_64-unknown-linux-gnufilc0
       Last 25 log lines:
       >             env=env,
       >             shell=True,
       >             close_fds=True,
       >         )
       >
       >         out, err = proc.communicate(script and script.encode())
       >         if 0 != proc.returncode:
       >             if out:
       >                 print(out.decode("utf8", "replace"), file=sys.stdout)
       >             if err:
       >                 print(err.decode("utf8", "replace"), file=sys.stderr)
       > >           pytest.fail("test script failed")
       > E           Failed: test script failed
       >
       > tests/conftest.py:154: Failed
       > ----------------------------- Captured stderr call -----------------------------
       > Traceback (most recent call last):
       >   File "<stdin>", line 6, in <module>
       > ValueError: too many values to unpack (expected 1)
       >
       > =========================== short test summary info ============================
       > FAILED tests/setthreadtitle_test.py::test_thread_title_unchanged - AssertionError: assert 'python3.12\n...npython3.12\n' == 'python3.12\n'
       > FAILED tests/setthreadtitle_test.py::test_set_thread_title - Failed: test script failed
       > FAILED tests/setthreadtitle_test.py::test_set_threads_title - Failed: test script failed
       > ==================== 3 failed, 3 passed, 2 skipped in 0.86s ====================
       For full logs, run:
         nix log /nix/store/ym8j9nq98nv65idcnql045lfmk273icm-python3.12-setproctitle-1.3.5-x86_64-unknown-linux-gnufilc0.drv
python3.12-types-futures-3.3.8
Sourcing python-remove-tests-dir-hook
Sourcing python-remove-bin-bytecode-hook.sh
Sourcing setuptools-build-hook
Using setuptoolsBuildPhase
Sourcing pypa-install-hook
Using pypaInstallPhase
Sourcing python-namespaces-hook
Sourcing python-catch-conflicts-hook.sh
→ unpackPhase
unpacking source archive /nix/store/cx9z4v8x0c3nlpcj9cii3dxyqn7hk09a-types-futures-3.3.8.tar.gz
source root is types-futures-3.3.8
setting SOURCE_DATE_EPOCH to timestamp 1643307623 of file "types-futures-3.3.8/setup.cfg"
→ patchPhase
→ updateAutotoolsGnuConfigScriptsPhase
→ updateAutotoolsGnuConfigScriptsPhase
→ configurePhase
no configure script, doing nothing
→ buildPhase
Executing setuptoolsBuildPhase
setup.py build flags: ''
/nix/store/01sa4zsjg3117lf3wjg3ab2dmpmrpb9q-python3.12-setuptools-78.1.1-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated.
!!
        ********************************************************************************
        Please consider removing the following classifiers in favor of a SPDX license expression:
        License :: OSI Approved :: Apache Software License
        See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details.
        ********************************************************************************
!!
  self._finalize_license_expression()
running bdist_wheel
running build
running build_py
creating build/lib/concurrent-python2-stubs
copying concurrent-python2-stubs/__init__.pyi -> build/lib/concurrent-python2-stubs
creating build/lib/concurrent-python2-stubs/futures
copying concurrent-python2-stubs/futures/__init__.pyi -> build/lib/concurrent-python2-stubs/futures
copying concurrent-python2-stubs/futures/_base.pyi -> build/lib/concurrent-python2-stubs/futures
copying concurrent-python2-stubs/futures/process.pyi -> build/lib/concurrent-python2-stubs/futures
copying concurrent-python2-stubs/futures/thread.pyi -> build/lib/concurrent-python2-stubs/futures
copying concurrent-python2-stubs/METADATA.toml -> build/lib/concurrent-python2-stubs
/nix/store/01sa4zsjg3117lf3wjg3ab2dmpmrpb9q-python3.12-setuptools-78.1.1-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/setuptools/_distutils/cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated.
!!
        ********************************************************************************
        Please avoid running ``setup.py`` directly.
        Instead, use pypa/build, pypa/installer or other
        standards-based tools.
        See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details.
        ********************************************************************************
!!
  self.initialize_options()
installing to build/bdist.linux-x86_64/wheel
running install
running install_lib
creating build/bdist.linux-x86_64/wheel
creating build/bdist.linux-x86_64/wheel/concurrent-python2-stubs
copying build/lib/concurrent-python2-stubs/__init__.pyi -> build/bdist.linux-x86_64/wheel/./concurrent-python2-stubs
creating build/bdist.linux-x86_64/wheel/concurrent-python2-stubs/futures
copying build/lib/concurrent-python2-stubs/futures/__init__.pyi -> build/bdist.linux-x86_64/wheel/./concurrent-python2-stubs/futures
copying build/lib/concurrent-python2-stubs/futures/_base.pyi -> build/bdist.linux-x86_64/wheel/./concurrent-python2-stubs/futures
copying build/lib/concurrent-python2-stubs/futures/process.pyi -> build/bdist.linux-x86_64/wheel/./concurrent-python2-stubs/futures
copying build/lib/concurrent-python2-stubs/futures/thread.pyi -> build/bdist.linux-x86_64/wheel/./concurrent-python2-stubs/futures
copying build/lib/concurrent-python2-stubs/METADATA.toml -> build/bdist.linux-x86_64/wheel/./concurrent-python2-stubs
running install_egg_info
running egg_info
writing types_futures.egg-info/PKG-INFO
writing dependency_links to types_futures.egg-info/dependency_links.txt
writing top-level names to types_futures.egg-info/top_level.txt
reading manifest file 'types_futures.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'types_futures.egg-info/SOURCES.txt'
Copying types_futures.egg-info to build/bdist.linux-x86_64/wheel/./types_futures-3.3.8-py3.12.egg-info
running install_scripts
creating build/bdist.linux-x86_64/wheel/types_futures-3.3.8.dist-info/WHEEL
creating 'dist/types_futures-3.3.8-py3-none-any.whl' and adding 'build/bdist.linux-x86_64/wheel' to it
adding 'concurrent-python2-stubs/METADATA.toml'
adding 'concurrent-python2-stubs/__init__.pyi'
adding 'concurrent-python2-stubs/futures/__init__.pyi'
adding 'concurrent-python2-stubs/futures/_base.pyi'
adding 'concurrent-python2-stubs/futures/process.pyi'
adding 'concurrent-python2-stubs/futures/thread.pyi'
adding 'types_futures-3.3.8.dist-info/METADATA'
adding 'types_futures-3.3.8.dist-info/WHEEL'
adding 'types_futures-3.3.8.dist-info/top_level.txt'
adding 'types_futures-3.3.8.dist-info/RECORD'
removing build/bdist.linux-x86_64/wheel
Finished executing setuptoolsBuildPhase
→ installPhase
Executing pypaInstallPhase
Successfully installed types_futures-3.3.8-py3-none-any.whl
Finished executing pypaInstallPhase
→ pythonOutputDistPhase
Executing pythonOutputDistPhase
Finished executing pythonOutputDistPhase
→ fixupPhase
shrinking RPATHs of ELF executables and libraries in /nix/store/fyh9nmy22nglzsvmx93sazyjja6n67c6-python3.12-types-futures-3.3.8-x86_64-unknown-linux-gnufilc0
checking for references to /build/ in /nix/store/fyh9nmy22nglzsvmx93sazyjja6n67c6-python3.12-types-futures-3.3.8-x86_64-unknown-linux-gnufilc0...
patching script interpreter paths in /nix/store/fyh9nmy22nglzsvmx93sazyjja6n67c6-python3.12-types-futures-3.3.8-x86_64-unknown-linux-gnufilc0
stripping (with command strip and flags -S -p) in  /nix/store/fyh9nmy22nglzsvmx93sazyjja6n67c6-python3.12-types-futures-3.3.8-x86_64-unknown-linux-gnufilc0/lib
shrinking RPATHs of ELF executables and libraries in /nix/store/ivp66mv5750bsachgmcl22gacmfasr96-python3.12-types-futures-3.3.8-x86_64-unknown-linux-gnufilc0-dist
checking for references to /build/ in /nix/store/ivp66mv5750bsachgmcl22gacmfasr96-python3.12-types-futures-3.3.8-x86_64-unknown-linux-gnufilc0-dist...
patching script interpreter paths in /nix/store/ivp66mv5750bsachgmcl22gacmfasr96-python3.12-types-futures-3.3.8-x86_64-unknown-linux-gnufilc0-dist
Executing pythonRemoveTestsDir
Finished executing pythonRemoveTestsDir
→ installCheckPhase
no Makefile or custom installCheckPhase, doing nothing
→ pythonRemoveBinBytecodePhase
python3.12-uc-micro-py-1.0.3
Build started
Sourcing python-remove-tests-dir-hook
Sourcing python-remove-bin-bytecode-hook.sh
Sourcing pypa-build-hook
Using pypaBuildPhase
Sourcing python-runtime-deps-check-hook
Using pythonRuntimeDepsCheckHook
Sourcing pypa-install-hook
Using pypaInstallPhase
Sourcing python-namespaces-hook
Sourcing python-catch-conflicts-hook.sh
Sourcing pytest-check-hook
Using pytestCheckPhase
→ unpackPhase
unpacking source archive /nix/store/kfk67dpk0mqymxdi5rc3607zr0qb7rjr-source
source root is source
setting SOURCE_DATE_EPOCH to timestamp 315619200 of file "source/uc_micro/properties/__init__.py"
→ patchPhase
→ updateAutotoolsGnuConfigScriptsPhase
→ updateAutotoolsGnuConfigScriptsPhase
→ configurePhase
no configure script, doing nothing
→ buildPhase
Executing pypaBuildPhase
Creating a wheel...
pypa build flags: --no-isolation --outdir dist/ --wheel
* Getting build dependencies for wheel...
/nix/store/dc1zv2avnpf3zifhg4awwq3fi7wx0yzq-python3.12-setuptools-78.1.1/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated
!!
        ********************************************************************************
        Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0).
        This deprecation is overdue, please update your project and remove deprecated
        calls to avoid build errors in the future.
        See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details.
        ********************************************************************************
!!
  corresp(dist, value, root_dir)
/nix/store/dc1zv2avnpf3zifhg4awwq3fi7wx0yzq-python3.12-setuptools-78.1.1/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:61: SetuptoolsDeprecationWarning: License classifiers are deprecated.
!!
        ********************************************************************************
        Please consider removing the following classifiers in favor of a SPDX license expression:
        License :: OSI Approved :: MIT License
        See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details.
        ********************************************************************************
!!
  dist._finalize_license_expression()
/nix/store/dc1zv2avnpf3zifhg4awwq3fi7wx0yzq-python3.12-setuptools-78.1.1/lib/python3.12/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated.
!!
        ********************************************************************************
        Please consider removing the following classifiers in favor of a SPDX license expression:
        License :: OSI Approved :: MIT License
        See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details.
        ********************************************************************************
!!
  self._finalize_license_expression()
running egg_info
creating uc_micro_py.egg-info
writing uc_micro_py.egg-info/PKG-INFO
writing dependency_links to uc_micro_py.egg-info/dependency_links.txt
writing requirements to uc_micro_py.egg-info/requires.txt
writing top-level names to uc_micro_py.egg-info/top_level.txt
writing manifest file 'uc_micro_py.egg-info/SOURCES.txt'
reading manifest file 'uc_micro_py.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
adding license file 'LICENSE'
writing manifest file 'uc_micro_py.egg-info/SOURCES.txt'
* Building wheel...
/nix/store/dc1zv2avnpf3zifhg4awwq3fi7wx0yzq-python3.12-setuptools-78.1.1/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated
!!
        ********************************************************************************
        Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0).
        This deprecation is overdue, please update your project and remove deprecated
        calls to avoid build errors in the future.
        See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details.
        ********************************************************************************
!!
  corresp(dist, value, root_dir)
/nix/store/dc1zv2avnpf3zifhg4awwq3fi7wx0yzq-python3.12-setuptools-78.1.1/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:61: SetuptoolsDeprecationWarning: License classifiers are deprecated.
!!
        ********************************************************************************
        Please consider removing the following classifiers in favor of a SPDX license expression:
        License :: OSI Approved :: MIT License
        See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details.
        ********************************************************************************
!!
  dist._finalize_license_expression()
/nix/store/dc1zv2avnpf3zifhg4awwq3fi7wx0yzq-python3.12-setuptools-78.1.1/lib/python3.12/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated.
!!
        ********************************************************************************
        Please consider removing the following classifiers in favor of a SPDX license expression:
        License :: OSI Approved :: MIT License
        See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details.
        ********************************************************************************
!!
  self._finalize_license_expression()
running bdist_wheel
running build
running build_py
creating build/lib/uc_micro
copying uc_micro/__init__.py -> build/lib/uc_micro
creating build/lib/uc_micro/categories
copying uc_micro/categories/__init__.py -> build/lib/uc_micro/categories
creating build/lib/uc_micro/properties
copying uc_micro/properties/__init__.py -> build/lib/uc_micro/properties
creating build/lib/uc_micro/categories/Cc
copying uc_micro/categories/Cc/__init__.py -> build/lib/uc_micro/categories/Cc
copying uc_micro/categories/Cc/regex.py -> build/lib/uc_micro/categories/Cc
creating build/lib/uc_micro/categories/Cf
copying uc_micro/categories/Cf/__init__.py -> build/lib/uc_micro/categories/Cf
copying uc_micro/categories/Cf/regex.py -> build/lib/uc_micro/categories/Cf
creating build/lib/uc_micro/categories/P
copying uc_micro/categories/P/__init__.py -> build/lib/uc_micro/categories/P
copying uc_micro/categories/P/regex.py -> build/lib/uc_micro/categories/P
creating build/lib/uc_micro/categories/Z
copying uc_micro/categories/Z/__init__.py -> build/lib/uc_micro/categories/Z
copying uc_micro/categories/Z/regex.py -> build/lib/uc_micro/categories/Z
creating build/lib/uc_micro/properties/Any
copying uc_micro/properties/Any/__init__.py -> build/lib/uc_micro/properties/Any
copying uc_micro/properties/Any/regex.py -> build/lib/uc_micro/properties/Any
running egg_info
writing uc_micro_py.egg-info/PKG-INFO
writing dependency_links to uc_micro_py.egg-info/dependency_links.txt
writing requirements to uc_micro_py.egg-info/requires.txt
writing top-level names to uc_micro_py.egg-info/top_level.txt
reading manifest file 'uc_micro_py.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
adding license file 'LICENSE'
writing manifest file 'uc_micro_py.egg-info/SOURCES.txt'
installing to build/bdist.linux-x86_64/wheel
running install
running install_lib
creating build/bdist.linux-x86_64/wheel
creating build/bdist.linux-x86_64/wheel/uc_micro
copying build/lib/uc_micro/__init__.py -> build/bdist.linux-x86_64/wheel/./uc_micro
creating build/bdist.linux-x86_64/wheel/uc_micro/categories
copying build/lib/uc_micro/categories/__init__.py -> build/bdist.linux-x86_64/wheel/./uc_micro/categories
creating build/bdist.linux-x86_64/wheel/uc_micro/categories/Cc
copying build/lib/uc_micro/categories/Cc/__init__.py -> build/bdist.linux-x86_64/wheel/./uc_micro/categories/Cc
copying build/lib/uc_micro/categories/Cc/regex.py -> build/bdist.linux-x86_64/wheel/./uc_micro/categories/Cc
creating build/bdist.linux-x86_64/wheel/uc_micro/categories/Cf
copying build/lib/uc_micro/categories/Cf/__init__.py -> build/bdist.linux-x86_64/wheel/./uc_micro/categories/Cf
copying build/lib/uc_micro/categories/Cf/regex.py -> build/bdist.linux-x86_64/wheel/./uc_micro/categories/Cf
creating build/bdist.linux-x86_64/wheel/uc_micro/categories/P
copying build/lib/uc_micro/categories/P/__init__.py -> build/bdist.linux-x86_64/wheel/./uc_micro/categories/P
copying build/lib/uc_micro/categories/P/regex.py -> build/bdist.linux-x86_64/wheel/./uc_micro/categories/P
creating build/bdist.linux-x86_64/wheel/uc_micro/categories/Z
copying build/lib/uc_micro/categories/Z/__init__.py -> build/bdist.linux-x86_64/wheel/./uc_micro/categories/Z
copying build/lib/uc_micro/categories/Z/regex.py -> build/bdist.linux-x86_64/wheel/./uc_micro/categories/Z
creating build/bdist.linux-x86_64/wheel/uc_micro/properties
copying build/lib/uc_micro/properties/__init__.py -> build/bdist.linux-x86_64/wheel/./uc_micro/properties
creating build/bdist.linux-x86_64/wheel/uc_micro/properties/Any
copying build/lib/uc_micro/properties/Any/__init__.py -> build/bdist.linux-x86_64/wheel/./uc_micro/properties/Any
copying build/lib/uc_micro/properties/Any/regex.py -> build/bdist.linux-x86_64/wheel/./uc_micro/properties/Any
running install_egg_info
Copying uc_micro_py.egg-info to build/bdist.linux-x86_64/wheel/./uc_micro_py-1.0.3-py3.12.egg-info
running install_scripts
creating build/bdist.linux-x86_64/wheel/uc_micro_py-1.0.3.dist-info/WHEEL
creating '/build/source/dist/.tmp-ctplv5kw/uc_micro_py-1.0.3-py3-none-any.whl' and adding 'build/bdist.linux-x86_64/wheel' to it
adding 'uc_micro/__init__.py'
adding 'uc_micro/categories/__init__.py'
adding 'uc_micro/categories/Cc/__init__.py'
adding 'uc_micro/categories/Cc/regex.py'
adding 'uc_micro/categories/Cf/__init__.py'
adding 'uc_micro/categories/Cf/regex.py'
adding 'uc_micro/categories/P/__init__.py'
adding 'uc_micro/categories/P/regex.py'
adding 'uc_micro/categories/Z/__init__.py'
adding 'uc_micro/categories/Z/regex.py'
adding 'uc_micro/properties/__init__.py'
adding 'uc_micro/properties/Any/__init__.py'
adding 'uc_micro/properties/Any/regex.py'
adding 'uc_micro_py-1.0.3.dist-info/licenses/LICENSE'
adding 'uc_micro_py-1.0.3.dist-info/METADATA'
adding 'uc_micro_py-1.0.3.dist-info/WHEEL'
adding 'uc_micro_py-1.0.3.dist-info/top_level.txt'
adding 'uc_micro_py-1.0.3.dist-info/RECORD'
removing build/bdist.linux-x86_64/wheel
Successfully built uc_micro_py-1.0.3-py3-none-any.whl
Finished creating a wheel...
Finished executing pypaBuildPhase
→ pythonRuntimeDepsCheckHook
Executing pythonRuntimeDepsCheck
Checking runtime dependencies for uc_micro_py-1.0.3-py3-none-any.whl
Finished executing pythonRuntimeDepsCheck
→ installPhase
Executing pypaInstallPhase
Successfully installed uc_micro_py-1.0.3-py3-none-any.whl
Finished executing pypaInstallPhase
→ pythonOutputDistPhase
Executing pythonOutputDistPhase
Finished executing pythonOutputDistPhase
→ fixupPhase
shrinking RPATHs of ELF executables and libraries in /nix/store/17fsjhzswa0wzzy31ql43124749ykcdd-python3.12-uc-micro-py-1.0.3-x86_64-unknown-linux-gnufilc0
checking for references to /build/ in /nix/store/17fsjhzswa0wzzy31ql43124749ykcdd-python3.12-uc-micro-py-1.0.3-x86_64-unknown-linux-gnufilc0...
patching script interpreter paths in /nix/store/17fsjhzswa0wzzy31ql43124749ykcdd-python3.12-uc-micro-py-1.0.3-x86_64-unknown-linux-gnufilc0
stripping (with command strip and flags -S -p) in  /nix/store/17fsjhzswa0wzzy31ql43124749ykcdd-python3.12-uc-micro-py-1.0.3-x86_64-unknown-linux-gnufilc0/lib
shrinking RPATHs of ELF executables and libraries in /nix/store/syd9hi3v1v968j3hy2nxi45jsns0qgqn-python3.12-uc-micro-py-1.0.3-x86_64-unknown-linux-gnufilc0-dist
checking for references to /build/ in /nix/store/syd9hi3v1v968j3hy2nxi45jsns0qgqn-python3.12-uc-micro-py-1.0.3-x86_64-unknown-linux-gnufilc0-dist...
patching script interpreter paths in /nix/store/syd9hi3v1v968j3hy2nxi45jsns0qgqn-python3.12-uc-micro-py-1.0.3-x86_64-unknown-linux-gnufilc0-dist
Executing pythonRemoveTestsDir
Finished executing pythonRemoveTestsDir
→ installCheckPhase
no Makefile or custom installCheckPhase, doing nothing
→ pythonRemoveBinBytecodePhase
→ pytestCheckPhase
Executing pytestCheckPhase
pytest flags: -m pytest
============================= test session starts ==============================
platform linux -- Python 3.12.5, pytest-8.3.5, pluggy-1.5.0
rootdir: /build/source
configfile: pyproject.toml
collected 5 items                                                              
test/test_uc_micro.py .....                                              [100%]
============================== 5 passed in 0.10s ===============================
Finished executing pytestCheckPhase
→ pytestcachePhase
→ pytestRemoveBytecodePhase
python3.12-types-protobuf-5.29.1.20250315
Build started
Sourcing python-remove-tests-dir-hook
Sourcing python-remove-bin-bytecode-hook.sh
Sourcing setuptools-build-hook
Using setuptoolsBuildPhase
Sourcing pypa-install-hook
Using pypaInstallPhase
Sourcing python-namespaces-hook
Sourcing python-catch-conflicts-hook.sh
→ unpackPhase
unpacking source archive /nix/store/7y8d6qxcn2ndcc7yz8y1gs4h3pcyrk7h-types_protobuf-5.29.1.20250315.tar.gz
source root is types_protobuf-5.29.1.20250315
setting SOURCE_DATE_EPOCH to timestamp 1742006696 of file "types_protobuf-5.29.1.20250315/setup.cfg"
→ patchPhase
→ updateAutotoolsGnuConfigScriptsPhase
→ updateAutotoolsGnuConfigScriptsPhase
→ configurePhase
no configure script, doing nothing
→ buildPhase
Executing setuptoolsBuildPhase
setup.py build flags: ''
/nix/store/01sa4zsjg3117lf3wjg3ab2dmpmrpb9q-python3.12-setuptools-78.1.1-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated.
!!
        ********************************************************************************
        Please consider removing the following classifiers in favor of a SPDX license expression:
        License :: OSI Approved :: Apache Software License
        See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details.
        ********************************************************************************
!!
  self._finalize_license_expression()
running bdist_wheel
running build
running build_py
creating build/lib/google-stubs/protobuf
copying google-stubs/protobuf/__init__.pyi -> build/lib/google-stubs/protobuf
copying google-stubs/protobuf/any_pb2.pyi -> build/lib/google-stubs/protobuf
copying google-stubs/protobuf/api_pb2.pyi -> build/lib/google-stubs/protobuf
creating build/lib/google-stubs/protobuf/compiler
copying google-stubs/protobuf/compiler/__init__.pyi -> build/lib/google-stubs/protobuf/compiler
copying google-stubs/protobuf/compiler/plugin_pb2.pyi -> build/lib/google-stubs/protobuf/compiler
copying google-stubs/protobuf/descriptor.pyi -> build/lib/google-stubs/protobuf
copying google-stubs/protobuf/descriptor_pb2.pyi -> build/lib/google-stubs/protobuf
copying google-stubs/protobuf/descriptor_pool.pyi -> build/lib/google-stubs/protobuf
copying google-stubs/protobuf/duration_pb2.pyi -> build/lib/google-stubs/protobuf
copying google-stubs/protobuf/empty_pb2.pyi -> build/lib/google-stubs/protobuf
copying google-stubs/protobuf/field_mask_pb2.pyi -> build/lib/google-stubs/protobuf
creating build/lib/google-stubs/protobuf/internal
copying google-stubs/protobuf/internal/__init__.pyi -> build/lib/google-stubs/protobuf/internal
copying google-stubs/protobuf/internal/api_implementation.pyi -> build/lib/google-stubs/protobuf/internal
copying google-stubs/protobuf/internal/builder.pyi -> build/lib/google-stubs/protobuf/internal
copying google-stubs/protobuf/internal/containers.pyi -> build/lib/google-stubs/protobuf/internal
copying google-stubs/protobuf/internal/decoder.pyi -> build/lib/google-stubs/protobuf/internal
copying google-stubs/protobuf/internal/encoder.pyi -> build/lib/google-stubs/protobuf/internal
copying google-stubs/protobuf/internal/enum_type_wrapper.pyi -> build/lib/google-stubs/protobuf/internal
copying google-stubs/protobuf/internal/extension_dict.pyi -> build/lib/google-stubs/protobuf/internal
copying google-stubs/protobuf/internal/message_listener.pyi -> build/lib/google-stubs/protobuf/internal
copying google-stubs/protobuf/internal/python_message.pyi -> build/lib/google-stubs/protobuf/internal
copying google-stubs/protobuf/internal/type_checkers.pyi -> build/lib/google-stubs/protobuf/internal
copying google-stubs/protobuf/internal/well_known_types.pyi -> build/lib/google-stubs/protobuf/internal
copying google-stubs/protobuf/internal/wire_format.pyi -> build/lib/google-stubs/protobuf/internal
copying google-stubs/protobuf/json_format.pyi -> build/lib/google-stubs/protobuf
copying google-stubs/protobuf/message.pyi -> build/lib/google-stubs/protobuf
copying google-stubs/protobuf/message_factory.pyi -> build/lib/google-stubs/protobuf
copying google-stubs/protobuf/reflection.pyi -> build/lib/google-stubs/protobuf
copying google-stubs/protobuf/runtime_version.pyi -> build/lib/google-stubs/protobuf
copying google-stubs/protobuf/service.pyi -> build/lib/google-stubs/protobuf
copying google-stubs/protobuf/source_context_pb2.pyi -> build/lib/google-stubs/protobuf
copying google-stubs/protobuf/struct_pb2.pyi -> build/lib/google-stubs/protobuf
copying google-stubs/protobuf/symbol_database.pyi -> build/lib/google-stubs/protobuf
copying google-stubs/protobuf/text_format.pyi -> build/lib/google-stubs/protobuf
copying google-stubs/protobuf/timestamp_pb2.pyi -> build/lib/google-stubs/protobuf
copying google-stubs/protobuf/type_pb2.pyi -> build/lib/google-stubs/protobuf
creating build/lib/google-stubs/protobuf/util
copying google-stubs/protobuf/util/__init__.pyi -> build/lib/google-stubs/protobuf/util
copying google-stubs/protobuf/wrappers_pb2.pyi -> build/lib/google-stubs/protobuf
copying google-stubs/METADATA.toml -> build/lib/google-stubs
copying google-stubs/protobuf/py.typed -> build/lib/google-stubs/protobuf
/nix/store/01sa4zsjg3117lf3wjg3ab2dmpmrpb9q-python3.12-setuptools-78.1.1-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/setuptools/_distutils/cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated.
!!
        ********************************************************************************
        Please avoid running ``setup.py`` directly.
        Instead, use pypa/build, pypa/installer or other
        standards-based tools.
        See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details.
        ********************************************************************************
!!
  self.initialize_options()
installing to build/bdist.linux-x86_64/wheel
running install
running install_lib
creating build/bdist.linux-x86_64/wheel
creating build/bdist.linux-x86_64/wheel/google-stubs
creating build/bdist.linux-x86_64/wheel/google-stubs/protobuf
copying build/lib/google-stubs/protobuf/__init__.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/protobuf/any_pb2.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/protobuf/api_pb2.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
creating build/bdist.linux-x86_64/wheel/google-stubs/protobuf/compiler
copying build/lib/google-stubs/protobuf/compiler/__init__.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf/compiler
copying build/lib/google-stubs/protobuf/compiler/plugin_pb2.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf/compiler
copying build/lib/google-stubs/protobuf/descriptor.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/protobuf/descriptor_pb2.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/protobuf/descriptor_pool.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/protobuf/duration_pb2.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/protobuf/empty_pb2.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/protobuf/field_mask_pb2.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
creating build/bdist.linux-x86_64/wheel/google-stubs/protobuf/internal
copying build/lib/google-stubs/protobuf/internal/__init__.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf/internal
copying build/lib/google-stubs/protobuf/internal/api_implementation.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf/internal
copying build/lib/google-stubs/protobuf/internal/builder.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf/internal
copying build/lib/google-stubs/protobuf/internal/containers.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf/internal
copying build/lib/google-stubs/protobuf/internal/decoder.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf/internal
copying build/lib/google-stubs/protobuf/internal/encoder.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf/internal
copying build/lib/google-stubs/protobuf/internal/enum_type_wrapper.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf/internal
copying build/lib/google-stubs/protobuf/internal/extension_dict.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf/internal
copying build/lib/google-stubs/protobuf/internal/message_listener.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf/internal
copying build/lib/google-stubs/protobuf/internal/python_message.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf/internal
copying build/lib/google-stubs/protobuf/internal/type_checkers.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf/internal
copying build/lib/google-stubs/protobuf/internal/well_known_types.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf/internal
copying build/lib/google-stubs/protobuf/internal/wire_format.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf/internal
copying build/lib/google-stubs/protobuf/json_format.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/protobuf/message.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/protobuf/message_factory.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/protobuf/reflection.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/protobuf/runtime_version.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/protobuf/service.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/protobuf/source_context_pb2.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/protobuf/struct_pb2.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/protobuf/symbol_database.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/protobuf/text_format.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/protobuf/timestamp_pb2.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/protobuf/type_pb2.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
creating build/bdist.linux-x86_64/wheel/google-stubs/protobuf/util
copying build/lib/google-stubs/protobuf/util/__init__.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf/util
copying build/lib/google-stubs/protobuf/wrappers_pb2.pyi -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/protobuf/py.typed -> build/bdist.linux-x86_64/wheel/./google-stubs/protobuf
copying build/lib/google-stubs/METADATA.toml -> build/bdist.linux-x86_64/wheel/./google-stubs
running install_egg_info
running egg_info
writing types_protobuf.egg-info/PKG-INFO
writing dependency_links to types_protobuf.egg-info/dependency_links.txt
writing top-level names to types_protobuf.egg-info/top_level.txt
reading manifest file 'types_protobuf.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
adding license file 'LICENSE'
writing manifest file 'types_protobuf.egg-info/SOURCES.txt'
Copying types_protobuf.egg-info to build/bdist.linux-x86_64/wheel/./types_protobuf-5.29.1.20250315-py3.12.egg-info
running install_scripts
creating build/bdist.linux-x86_64/wheel/types_protobuf-5.29.1.20250315.dist-info/WHEEL
creating 'dist/types_protobuf-5.29.1.20250315-py3-none-any.whl' and adding 'build/bdist.linux-x86_64/wheel' to it
adding 'google-stubs/METADATA.toml'
adding 'google-stubs/protobuf/__init__.pyi'
adding 'google-stubs/protobuf/any_pb2.pyi'
adding 'google-stubs/protobuf/api_pb2.pyi'
adding 'google-stubs/protobuf/descriptor.pyi'
adding 'google-stubs/protobuf/descriptor_pb2.pyi'
adding 'google-stubs/protobuf/descriptor_pool.pyi'
adding 'google-stubs/protobuf/duration_pb2.pyi'
adding 'google-stubs/protobuf/empty_pb2.pyi'
adding 'google-stubs/protobuf/field_mask_pb2.pyi'
adding 'google-stubs/protobuf/json_format.pyi'
adding 'google-stubs/protobuf/message.pyi'
adding 'google-stubs/protobuf/message_factory.pyi'
adding 'google-stubs/protobuf/py.typed'
adding 'google-stubs/protobuf/reflection.pyi'
adding 'google-stubs/protobuf/runtime_version.pyi'
adding 'google-stubs/protobuf/service.pyi'
adding 'google-stubs/protobuf/source_context_pb2.pyi'
adding 'google-stubs/protobuf/struct_pb2.pyi'
adding 'google-stubs/protobuf/symbol_database.pyi'
adding 'google-stubs/protobuf/text_format.pyi'
adding 'google-stubs/protobuf/timestamp_pb2.pyi'
adding 'google-stubs/protobuf/type_pb2.pyi'
adding 'google-stubs/protobuf/wrappers_pb2.pyi'
adding 'google-stubs/protobuf/compiler/__init__.pyi'
adding 'google-stubs/protobuf/compiler/plugin_pb2.pyi'
adding 'google-stubs/protobuf/internal/__init__.pyi'
adding 'google-stubs/protobuf/internal/api_implementation.pyi'
adding 'google-stubs/protobuf/internal/builder.pyi'
adding 'google-stubs/protobuf/internal/containers.pyi'
adding 'google-stubs/protobuf/internal/decoder.pyi'
adding 'google-stubs/protobuf/internal/encoder.pyi'
adding 'google-stubs/protobuf/internal/enum_type_wrapper.pyi'
adding 'google-stubs/protobuf/internal/extension_dict.pyi'
adding 'google-stubs/protobuf/internal/message_listener.pyi'
adding 'google-stubs/protobuf/internal/python_message.pyi'
adding 'google-stubs/protobuf/internal/type_checkers.pyi'
adding 'google-stubs/protobuf/internal/well_known_types.pyi'
adding 'google-stubs/protobuf/internal/wire_format.pyi'
adding 'google-stubs/protobuf/util/__init__.pyi'
adding 'types_protobuf-5.29.1.20250315.dist-info/licenses/LICENSE'
adding 'types_protobuf-5.29.1.20250315.dist-info/METADATA'
adding 'types_protobuf-5.29.1.20250315.dist-info/WHEEL'
adding 'types_protobuf-5.29.1.20250315.dist-info/top_level.txt'
adding 'types_protobuf-5.29.1.20250315.dist-info/RECORD'
removing build/bdist.linux-x86_64/wheel
Finished executing setuptoolsBuildPhase
→ installPhase
Executing pypaInstallPhase
Successfully installed types_protobuf-5.29.1.20250315-py3-none-any.whl
Finished executing pypaInstallPhase
→ pythonOutputDistPhase
Executing pythonOutputDistPhase
Finished executing pythonOutputDistPhase
→ fixupPhase
shrinking RPATHs of ELF executables and libraries in /nix/store/dg0jkrxmls6h5hrq37dskj0ka3hb9hfz-python3.12-types-protobuf-5.29.1.20250315-x86_64-unknown-linux-gnufilc0
checking for references to /build/ in /nix/store/dg0jkrxmls6h5hrq37dskj0ka3hb9hfz-python3.12-types-protobuf-5.29.1.20250315-x86_64-unknown-linux-gnufilc0...
patching script interpreter paths in /nix/store/dg0jkrxmls6h5hrq37dskj0ka3hb9hfz-python3.12-types-protobuf-5.29.1.20250315-x86_64-unknown-linux-gnufilc0
stripping (with command strip and flags -S -p) in  /nix/store/dg0jkrxmls6h5hrq37dskj0ka3hb9hfz-python3.12-types-protobuf-5.29.1.20250315-x86_64-unknown-linux-gnufilc0/lib
shrinking RPATHs of ELF executables and libraries in /nix/store/1559ki910qhx6y9p74nzmwy3xha2dwpl-python3.12-types-protobuf-5.29.1.20250315-x86_64-unknown-linux-gnufilc0-dist
checking for references to /build/ in /nix/store/1559ki910qhx6y9p74nzmwy3xha2dwpl-python3.12-types-protobuf-5.29.1.20250315-x86_64-unknown-linux-gnufilc0-dist...
patching script interpreter paths in /nix/store/1559ki910qhx6y9p74nzmwy3xha2dwpl-python3.12-types-protobuf-5.29.1.20250315-x86_64-unknown-linux-gnufilc0-dist
Executing pythonRemoveTestsDir
Finished executing pythonRemoveTestsDir
→ pythonRemoveBinBytecodePhase
python3.12-linkify-it-py-2.0.3
Build started
Sourcing python-remove-tests-dir-hook
Sourcing python-remove-bin-bytecode-hook.sh
Sourcing pypa-build-hook
Using pypaBuildPhase
Sourcing python-runtime-deps-check-hook
Using pythonRuntimeDepsCheckHook
Sourcing pypa-install-hook
Using pypaInstallPhase
Sourcing python-namespaces-hook
Sourcing python-catch-conflicts-hook.sh
Sourcing pytest-check-hook
Using pytestCheckPhase
→ unpackPhase
unpacking source archive /nix/store/3x1ilynymyf4y2rxcyw3fxqjqxbpw4vw-source
source root is source
setting SOURCE_DATE_EPOCH to timestamp 315619200 of file "source/tox.ini"
→ patchPhase
→ updateAutotoolsGnuConfigScriptsPhase
→ updateAutotoolsGnuConfigScriptsPhase
→ configurePhase
no configure script, doing nothing
→ buildPhase
Executing pypaBuildPhase
Creating a wheel...
pypa build flags: --no-isolation --outdir dist/ --wheel
* Getting build dependencies for wheel...
/nix/store/dc1zv2avnpf3zifhg4awwq3fi7wx0yzq-python3.12-setuptools-78.1.1/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated
!!
        ********************************************************************************
        Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0).
        This deprecation is overdue, please update your project and remove deprecated
        calls to avoid build errors in the future.
        See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details.
        ********************************************************************************
!!
  corresp(dist, value, root_dir)
/nix/store/dc1zv2avnpf3zifhg4awwq3fi7wx0yzq-python3.12-setuptools-78.1.1/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:61: SetuptoolsDeprecationWarning: License classifiers are deprecated.
!!
        ********************************************************************************
        Please consider removing the following classifiers in favor of a SPDX license expression:
        License :: OSI Approved :: MIT License
        See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details.
        ********************************************************************************
!!
  dist._finalize_license_expression()
/nix/store/dc1zv2avnpf3zifhg4awwq3fi7wx0yzq-python3.12-setuptools-78.1.1/lib/python3.12/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated.
!!
        ********************************************************************************
        Please consider removing the following classifiers in favor of a SPDX license expression:
        License :: OSI Approved :: MIT License
        See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details.
        ********************************************************************************
!!
  self._finalize_license_expression()
running egg_info
creating linkify_it_py.egg-info
writing linkify_it_py.egg-info/PKG-INFO
writing dependency_links to linkify_it_py.egg-info/dependency_links.txt
writing requirements to linkify_it_py.egg-info/requires.txt
writing top-level names to linkify_it_py.egg-info/top_level.txt
writing manifest file 'linkify_it_py.egg-info/SOURCES.txt'
reading manifest file 'linkify_it_py.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
adding license file 'LICENSE'
writing manifest file 'linkify_it_py.egg-info/SOURCES.txt'
* Building wheel...
/nix/store/dc1zv2avnpf3zifhg4awwq3fi7wx0yzq-python3.12-setuptools-78.1.1/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated
!!
        ********************************************************************************
        Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0).
        This deprecation is overdue, please update your project and remove deprecated
        calls to avoid build errors in the future.
        See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details.
        ********************************************************************************
!!
  corresp(dist, value, root_dir)
/nix/store/dc1zv2avnpf3zifhg4awwq3fi7wx0yzq-python3.12-setuptools-78.1.1/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:61: SetuptoolsDeprecationWarning: License classifiers are deprecated.
!!
        ********************************************************************************
        Please consider removing the following classifiers in favor of a SPDX license expression:
        License :: OSI Approved :: MIT License
        See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details.
        ********************************************************************************
!!
  dist._finalize_license_expression()
/nix/store/dc1zv2avnpf3zifhg4awwq3fi7wx0yzq-python3.12-setuptools-78.1.1/lib/python3.12/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated.
!!
        ********************************************************************************
        Please consider removing the following classifiers in favor of a SPDX license expression:
        License :: OSI Approved :: MIT License
        See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details.
        ********************************************************************************
!!
  self._finalize_license_expression()
running bdist_wheel
running build
running build_py
creating build/lib/linkify_it
copying linkify_it/__init__.py -> build/lib/linkify_it
copying linkify_it/main.py -> build/lib/linkify_it
copying linkify_it/tlds.py -> build/lib/linkify_it
copying linkify_it/ucre.py -> build/lib/linkify_it
running egg_info
writing linkify_it_py.egg-info/PKG-INFO
writing dependency_links to linkify_it_py.egg-info/dependency_links.txt
writing requirements to linkify_it_py.egg-info/requires.txt
writing top-level names to linkify_it_py.egg-info/top_level.txt
reading manifest file 'linkify_it_py.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
adding license file 'LICENSE'
writing manifest file 'linkify_it_py.egg-info/SOURCES.txt'
installing to build/bdist.linux-x86_64/wheel
running install
running install_lib
creating build/bdist.linux-x86_64/wheel
creating build/bdist.linux-x86_64/wheel/linkify_it
copying build/lib/linkify_it/__init__.py -> build/bdist.linux-x86_64/wheel/./linkify_it
copying build/lib/linkify_it/main.py -> build/bdist.linux-x86_64/wheel/./linkify_it
copying build/lib/linkify_it/tlds.py -> build/bdist.linux-x86_64/wheel/./linkify_it
copying build/lib/linkify_it/ucre.py -> build/bdist.linux-x86_64/wheel/./linkify_it
running install_egg_info
Copying linkify_it_py.egg-info to build/bdist.linux-x86_64/wheel/./linkify_it_py-2.0.3-py3.12.egg-info
running install_scripts
creating build/bdist.linux-x86_64/wheel/linkify_it_py-2.0.3.dist-info/WHEEL
creating '/build/source/dist/.tmp-abt_1p9c/linkify_it_py-2.0.3-py3-none-any.whl' and adding 'build/bdist.linux-x86_64/wheel' to it
adding 'linkify_it/__init__.py'
adding 'linkify_it/main.py'
adding 'linkify_it/tlds.py'
adding 'linkify_it/ucre.py'
adding 'linkify_it_py-2.0.3.dist-info/licenses/LICENSE'
adding 'linkify_it_py-2.0.3.dist-info/METADATA'
adding 'linkify_it_py-2.0.3.dist-info/WHEEL'
adding 'linkify_it_py-2.0.3.dist-info/top_level.txt'
adding 'linkify_it_py-2.0.3.dist-info/RECORD'
removing build/bdist.linux-x86_64/wheel
Successfully built linkify_it_py-2.0.3-py3-none-any.whl
Finished creating a wheel...
Finished executing pypaBuildPhase
→ pythonRuntimeDepsCheckHook
Executing pythonRuntimeDepsCheck
Checking runtime dependencies for linkify_it_py-2.0.3-py3-none-any.whl
Finished executing pythonRuntimeDepsCheck
→ installPhase
Executing pypaInstallPhase
Successfully installed linkify_it_py-2.0.3-py3-none-any.whl
Finished executing pypaInstallPhase
→ pythonOutputDistPhase
Executing pythonOutputDistPhase
Finished executing pythonOutputDistPhase
→ fixupPhase
shrinking RPATHs of ELF executables and libraries in /nix/store/z1wmigcmfwcbl0glfsg3d77bdcvsvipv-python3.12-linkify-it-py-2.0.3-x86_64-unknown-linux-gnufilc0
checking for references to /build/ in /nix/store/z1wmigcmfwcbl0glfsg3d77bdcvsvipv-python3.12-linkify-it-py-2.0.3-x86_64-unknown-linux-gnufilc0...
patching script interpreter paths in /nix/store/z1wmigcmfwcbl0glfsg3d77bdcvsvipv-python3.12-linkify-it-py-2.0.3-x86_64-unknown-linux-gnufilc0
stripping (with command strip and flags -S -p) in  /nix/store/z1wmigcmfwcbl0glfsg3d77bdcvsvipv-python3.12-linkify-it-py-2.0.3-x86_64-unknown-linux-gnufilc0/lib
shrinking RPATHs of ELF executables and libraries in /nix/store/n04fnvpfldpyh8d6zk92f5xlyidi0376-python3.12-linkify-it-py-2.0.3-x86_64-unknown-linux-gnufilc0-dist
checking for references to /build/ in /nix/store/n04fnvpfldpyh8d6zk92f5xlyidi0376-python3.12-linkify-it-py-2.0.3-x86_64-unknown-linux-gnufilc0-dist...
patching script interpreter paths in /nix/store/n04fnvpfldpyh8d6zk92f5xlyidi0376-python3.12-linkify-it-py-2.0.3-x86_64-unknown-linux-gnufilc0-dist
Executing pythonRemoveTestsDir
Finished executing pythonRemoveTestsDir
→ installCheckPhase
no Makefile or custom installCheckPhase, doing nothing
→ pythonRemoveBinBytecodePhase
→ pytestCheckPhase
Executing pytestCheckPhase
pytest flags: -m pytest
============================= test session starts ==============================
platform linux -- Python 3.12.5, pytest-8.3.5, pluggy-1.5.0
rootdir: /build/source
configfile: pyproject.toml
collected 177 items                                                            
test/test_apis.py .......................................                [ 22%]
test/test_linkify.py ................................................... [ 50%]
........................................................................ [ 91%]
...............                                                          [100%]
============================= 177 passed in 4.16s ==============================
Finished executing pytestCheckPhase
→ pytestcachePhase
→ pytestRemoveBytecodePhase
tcllib-2.0
Build started
→ unpackPhase
unpacking source archive /nix/store/4q2figbky2x9rgzjkykyq33a80cqda67-source
source root is source
→ patchPhase
→ updateAutotoolsGnuConfigScriptsPhase
→ updateAutotoolsGnuConfigScriptsPhase
→ configurePhase
patching script interpreter paths in ./configure
./configure: interpreter directive changed from "#! /bin/sh" to "/nix/store/cfqbabpc7xwg8akbcchqbq3cai6qq2vs-bash-5.2p37/bin/sh"
configure flags: --prefix=/nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0 --with-tcl=/nix/store/28gabrjr8r80g1a1c9zchiixb1hbgrb5-tcl-x86_64-unknown-linux-gnufilc0-8.6.16/lib --with-tclinclude=/nix/store/28gabrjr8r80g1a1c9zchiixb1hbgrb5-tcl-x86_64-unknown-linux-gnufilc0-8.6.16/include --exec-prefix=/nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0 --build=x86_64-unknown-linux-gnu --host=x86_64-unknown-linux-gnufilc0
checking executable extension based on host type... 
checking for tclsh... /nix/store/28gabrjr8r80g1a1c9zchiixb1hbgrb5-tcl-x86_64-unknown-linux-gnufilc0-8.6.16/bin/tclsh8.6
configure: creating ./config.status
config.status: creating Makefile
→ buildPhase
build flags: SHELL=/nix/store/cfqbabpc7xwg8akbcchqbq3cai6qq2vs-bash-5.2p37/bin/bash all
/nix/store/28gabrjr8r80g1a1c9zchiixb1hbgrb5-tcl-x86_64-unknown-linux-gnufilc0-8.6.16/bin/tclsh8.6 `echo ./installer.tcl` \
	-no-examples -no-html \
	-pkg-path   `echo /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/lib/tcllib2.0` \
	-app-path   `echo /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin` \
	-nroff-path `echo /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/man/mann` \
	-no-wait -no-gui
Installing Tcllib 2.0
You have chosen the following configuration ...
Packages:      /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/lib/tcllib2.0
Applications:  /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin
Examples:      Not installed.
Documentation:
	NROFF:  /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/man/mann
	HTML:   Not installed.
..............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
Generating /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/lib/tcllib2.0/pkgIndex.tcl
.........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
Generating /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/dtplite
Generating /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/mkdoc
Generating /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/nns
Generating /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/nnsd
Generating /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/nnslog
Generating /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/page
Generating /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/pt
Generating /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/tcldocstrip
/nix/store/28gabrjr8r80g1a1c9zchiixb1hbgrb5-tcl-x86_64-unknown-linux-gnufilc0-8.6.16/bin/tclsh8.6 `echo ./sak.tcl` critcl \
  -includedir `echo /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/include` \
  -libdir     `echo /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/lib` \
  -pkg tcllibc2.0
error: cannot find a critcl to run.
→ installPhase
install flags: SHELL=/nix/store/cfqbabpc7xwg8akbcchqbq3cai6qq2vs-bash-5.2p37/bin/bash install
/nix/store/28gabrjr8r80g1a1c9zchiixb1hbgrb5-tcl-x86_64-unknown-linux-gnufilc0-8.6.16/bin/tclsh8.6 `echo ./installer.tcl` \
	-no-examples -no-html \
	-pkg-path   `echo /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/lib/tcllib2.0` \
	-app-path   `echo /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin` \
	-nroff-path `echo /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/man/mann` \
	-no-wait -no-gui
Installing Tcllib 2.0
You have chosen the following configuration ...
Packages:      /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/lib/tcllib2.0
Applications:  /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin
Examples:      Not installed.
Documentation:
	NROFF:  /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/man/mann
	HTML:   Not installed.
..............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
Generating /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/lib/tcllib2.0/pkgIndex.tcl
.........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
Generating /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/dtplite
Generating /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/mkdoc
Generating /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/nns
Generating /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/nnsd
Generating /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/nnslog
Generating /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/page
Generating /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/pt
Generating /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/tcldocstrip
/nix/store/28gabrjr8r80g1a1c9zchiixb1hbgrb5-tcl-x86_64-unknown-linux-gnufilc0-8.6.16/bin/tclsh8.6 `echo ./sak.tcl` critcl \
  -includedir `echo /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/include` \
  -libdir     `echo /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/lib` \
  -pkg tcllibc2.0
error: cannot find a critcl to run.
→ fixupPhase
moving /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/man to /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/share/man
shrinking RPATHs of ELF executables and libraries in /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0
checking for references to /build/ in /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0...
gzipping man pages under /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/share/man/
patching script interpreter paths in /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0
/nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/dtplite: interpreter directive changed from "#! /usr/bin/env tclsh" to "/nix/store/28gabrjr8r80g1a1c9zchiixb1hbgrb5-tcl-x86_64-unknown-linux-gnufilc0-8.6.16/bin/tclsh"
/nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/nns: interpreter directive changed from "#! /usr/bin/env tclsh" to "/nix/store/28gabrjr8r80g1a1c9zchiixb1hbgrb5-tcl-x86_64-unknown-linux-gnufilc0-8.6.16/bin/tclsh"
/nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/nnsd: interpreter directive changed from "#! /usr/bin/env tclsh" to "/nix/store/28gabrjr8r80g1a1c9zchiixb1hbgrb5-tcl-x86_64-unknown-linux-gnufilc0-8.6.16/bin/tclsh"
/nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/nnslog: interpreter directive changed from "#! /usr/bin/env tclsh" to "/nix/store/28gabrjr8r80g1a1c9zchiixb1hbgrb5-tcl-x86_64-unknown-linux-gnufilc0-8.6.16/bin/tclsh"
/nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/page: interpreter directive changed from "#! /usr/bin/env tclsh" to "/nix/store/28gabrjr8r80g1a1c9zchiixb1hbgrb5-tcl-x86_64-unknown-linux-gnufilc0-8.6.16/bin/tclsh"
/nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/pt: interpreter directive changed from "#!/usr/bin/env tclsh" to "/nix/store/28gabrjr8r80g1a1c9zchiixb1hbgrb5-tcl-x86_64-unknown-linux-gnufilc0-8.6.16/bin/tclsh"
/nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/tcldocstrip: interpreter directive changed from "#! /usr/bin/env tclsh" to "/nix/store/28gabrjr8r80g1a1c9zchiixb1hbgrb5-tcl-x86_64-unknown-linux-gnufilc0-8.6.16/bin/tclsh"
stripping (with command strip and flags -S -p) in  /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/lib /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin
Adding TCLLIBPATH wrapper for /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/mkdoc
Adding TCLLIBPATH wrapper for /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/dtplite
Adding TCLLIBPATH wrapper for /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/nns
Adding TCLLIBPATH wrapper for /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/nnsd
Adding TCLLIBPATH wrapper for /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/nnslog
Adding TCLLIBPATH wrapper for /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/page
Adding TCLLIBPATH wrapper for /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/pt
Adding TCLLIBPATH wrapper for /nix/store/cihqks83zrw0n8xwbrhfhd6g1615l2cc-tcllib-x86_64-unknown-linux-gnufilc0-2.0/bin/tcldocstrip
python3.12-textual-3.2.0
Build started
Sourcing python-remove-tests-dir-hook
Sourcing python-remove-bin-bytecode-hook.sh
Sourcing pypa-build-hook
Using pypaBuildPhase
Sourcing python-runtime-deps-check-hook
Using pythonRuntimeDepsCheckHook
Sourcing pypa-install-hook
Using pypaInstallPhase
Sourcing python-namespaces-hook
Sourcing python-catch-conflicts-hook.sh
Sourcing pytest-check-hook
Using pytestCheckPhase
→ unpackPhase
unpacking source archive /nix/store/wclp6ww9fywdmp2fg65f3j9z9cg12254-source
source root is source
setting SOURCE_DATE_EPOCH to timestamp 315619200 of file "source/tools/widget_documentation.py"
→ patchPhase
→ updateAutotoolsGnuConfigScriptsPhase
→ updateAutotoolsGnuConfigScriptsPhase
→ configurePhase
no configure script, doing nothing
→ buildPhase
Executing pypaBuildPhase
Creating a wheel...
pypa build flags: --no-isolation --outdir dist/ --wheel
* Getting build dependencies for wheel...
* Building wheel...
Successfully built textual-3.2.0-py3-none-any.whl
Finished creating a wheel...
Finished executing pypaBuildPhase
→ pythonRuntimeDepsCheckHook
Executing pythonRuntimeDepsCheck
Checking runtime dependencies for textual-3.2.0-py3-none-any.whl
Finished executing pythonRuntimeDepsCheck
→ installPhase
Executing pypaInstallPhase
Successfully installed textual-3.2.0-py3-none-any.whl
Finished executing pypaInstallPhase
→ pythonOutputDistPhase
Executing pythonOutputDistPhase
Finished executing pythonOutputDistPhase
→ fixupPhase
shrinking RPATHs of ELF executables and libraries in /nix/store/ra6r2lwkyd66g909afbaph1ls6g8vd3s-python3.12-textual-3.2.0-x86_64-unknown-linux-gnufilc0
checking for references to /build/ in /nix/store/ra6r2lwkyd66g909afbaph1ls6g8vd3s-python3.12-textual-3.2.0-x86_64-unknown-linux-gnufilc0...
patching script interpreter paths in /nix/store/ra6r2lwkyd66g909afbaph1ls6g8vd3s-python3.12-textual-3.2.0-x86_64-unknown-linux-gnufilc0
stripping (with command strip and flags -S -p) in  /nix/store/ra6r2lwkyd66g909afbaph1ls6g8vd3s-python3.12-textual-3.2.0-x86_64-unknown-linux-gnufilc0/lib
shrinking RPATHs of ELF executables and libraries in /nix/store/c85dg5js4iw5b6c7ywbjk7fl2miksjcw-python3.12-textual-3.2.0-x86_64-unknown-linux-gnufilc0-dist
checking for references to /build/ in /nix/store/c85dg5js4iw5b6c7ywbjk7fl2miksjcw-python3.12-textual-3.2.0-x86_64-unknown-linux-gnufilc0-dist...
patching script interpreter paths in /nix/store/c85dg5js4iw5b6c7ywbjk7fl2miksjcw-python3.12-textual-3.2.0-x86_64-unknown-linux-gnufilc0-dist
Executing pythonRemoveTestsDir
Finished executing pythonRemoveTestsDir
→ installCheckPhase
no Makefile or custom installCheckPhase, doing nothing
→ pythonRemoveBinBytecodePhase
→ pytestCheckPhase
Executing pytestCheckPhase
pytest flags: -m pytest --ignore-glob=tests/snapshot_tests/test_snapshots.py -k not\ \(test_textual_env_var\) --dist=loadgroup --numprocesses=7
Traceback (most recent call last):
  File "<frozen runpy>", line 198, in _run_module_as_main
  File "<frozen runpy>", line 88, in _run_code
  File "/nix/store/rrgc0rmn4vnhb939qhnhqavrbw4v6lhp-python3.12-pytest-8.3.5-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/pytest/__main__.py", line 9, in <module>
    raise SystemExit(pytest.console_main())
                     ^^^^^^^^^^^^^^^^^^^^^
  File "/nix/store/rrgc0rmn4vnhb939qhnhqavrbw4v6lhp-python3.12-pytest-8.3.5-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/_pytest/config/__init__.py", line 201, in console_main
    code = main()
           ^^^^^^
  File "/nix/store/rrgc0rmn4vnhb939qhnhqavrbw4v6lhp-python3.12-pytest-8.3.5-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/_pytest/config/__init__.py", line 156, in main
    config = _prepareconfig(args, plugins)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/nix/store/rrgc0rmn4vnhb939qhnhqavrbw4v6lhp-python3.12-pytest-8.3.5-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/_pytest/config/__init__.py", line 341, in _prepareconfig
    config = pluginmanager.hook.pytest_cmdline_parse(
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/nix/store/9a8y2w4mbhz3f8vbz9ra3qwxvawdnzz0-python3.12-pluggy-1.5.0-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/pluggy/_hooks.py", line 513, in __call__
    return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/nix/store/9a8y2w4mbhz3f8vbz9ra3qwxvawdnzz0-python3.12-pluggy-1.5.0-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/pluggy/_manager.py", line 120, in _hookexec
    return self._inner_hookexec(hook_name, methods, kwargs, firstresult)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/nix/store/9a8y2w4mbhz3f8vbz9ra3qwxvawdnzz0-python3.12-pluggy-1.5.0-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/pluggy/_callers.py", line 139, in _multicall
    raise exception.with_traceback(exception.__traceback__)
  File "/nix/store/9a8y2w4mbhz3f8vbz9ra3qwxvawdnzz0-python3.12-pluggy-1.5.0-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/pluggy/_callers.py", line 122, in _multicall
    teardown.throw(exception)  # type: ignore[union-attr]
    ^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/nix/store/rrgc0rmn4vnhb939qhnhqavrbw4v6lhp-python3.12-pytest-8.3.5-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/_pytest/helpconfig.py", line 105, in pytest_cmdline_parse
    config = yield
             ^^^^^
  File "/nix/store/9a8y2w4mbhz3f8vbz9ra3qwxvawdnzz0-python3.12-pluggy-1.5.0-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/pluggy/_callers.py", line 103, in _multicall
    res = hook_impl.function(*args)
          ^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/nix/store/rrgc0rmn4vnhb939qhnhqavrbw4v6lhp-python3.12-pytest-8.3.5-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/_pytest/config/__init__.py", line 1140, in pytest_cmdline_parse
    self.parse(args)
  File "/nix/store/rrgc0rmn4vnhb939qhnhqavrbw4v6lhp-python3.12-pytest-8.3.5-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/_pytest/config/__init__.py", line 1494, in parse
    self._preparse(args, addopts=addopts)
  File "/nix/store/rrgc0rmn4vnhb939qhnhqavrbw4v6lhp-python3.12-pytest-8.3.5-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/_pytest/config/__init__.py", line 1381, in _preparse
    self.pluginmanager.load_setuptools_entrypoints("pytest11")
  File "/nix/store/9a8y2w4mbhz3f8vbz9ra3qwxvawdnzz0-python3.12-pluggy-1.5.0-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/pluggy/_manager.py", line 421, in load_setuptools_entrypoints
    plugin = ep.load()
             ^^^^^^^^^
  File "/nix/store/l4f8rn6y0jymzbmr08rayygy4xvchpxb-python3-3.12.5-x86_64-unknown-linux-gnufilc0/lib/python3.12/importlib/metadata/__init__.py", line 205, in load
    module = import_module(match.group('module'))
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/nix/store/l4f8rn6y0jymzbmr08rayygy4xvchpxb-python3-3.12.5-x86_64-unknown-linux-gnufilc0/lib/python3.12/importlib/__init__.py", line 90, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "<frozen importlib._bootstrap>", line 1387, in _gcd_import
  File "<frozen importlib._bootstrap>", line 1360, in _find_and_load
  File "<frozen importlib._bootstrap>", line 1331, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 935, in _load_unlocked
  File "/nix/store/rrgc0rmn4vnhb939qhnhqavrbw4v6lhp-python3.12-pytest-8.3.5-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/_pytest/assertion/rewrite.py", line 185, in exec_module
    exec(co, module.__dict__)
  File "/nix/store/ans2fad34fdsc56a15fyy9yv9pdsp5v2-python3.12-time-machine-2.16.0/lib/python3.12/site-packages/time_machine/__init__.py", line 26, in <module>
    import _time_machine
ModuleNotFoundError: No module named '_time_machine'
critcl-3.3.1
Build started
python3.12-textual-3.2.0
error: Cannot build '/nix/store/1bygm83sv32appf0bbaw7zdmh0c720x7-python3.12-textual-3.2.0-x86_64-unknown-linux-gnufilc0.drv'.
       Reason: builder failed with exit code 1.
       Output paths:
         /nix/store/c85dg5js4iw5b6c7ywbjk7fl2miksjcw-python3.12-textual-3.2.0-x86_64-unknown-linux-gnufilc0-dist
         /nix/store/ra6r2lwkyd66g909afbaph1ls6g8vd3s-python3.12-textual-3.2.0-x86_64-unknown-linux-gnufilc0
       Last 25 log lines:
       >           ^^^^^^^^^^^^^^^^^^^^^^^^^
       >   File "/nix/store/rrgc0rmn4vnhb939qhnhqavrbw4v6lhp-python3.12-pytest-8.3.5-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/_pytest/config/__init__.py", line 1140, in pytest_cmdline_parse
       >     self.parse(args)
       >   File "/nix/store/rrgc0rmn4vnhb939qhnhqavrbw4v6lhp-python3.12-pytest-8.3.5-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/_pytest/config/__init__.py", line 1494, in parse
       >     self._preparse(args, addopts=addopts)
       >   File "/nix/store/rrgc0rmn4vnhb939qhnhqavrbw4v6lhp-python3.12-pytest-8.3.5-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/_pytest/config/__init__.py", line 1381, in _preparse
       >     self.pluginmanager.load_setuptools_entrypoints("pytest11")
       >   File "/nix/store/9a8y2w4mbhz3f8vbz9ra3qwxvawdnzz0-python3.12-pluggy-1.5.0-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/pluggy/_manager.py", line 421, in load_setuptools_entrypoints
       >     plugin = ep.load()
       >              ^^^^^^^^^
       >   File "/nix/store/l4f8rn6y0jymzbmr08rayygy4xvchpxb-python3-3.12.5-x86_64-unknown-linux-gnufilc0/lib/python3.12/importlib/metadata/__init__.py", line 205, in load
       >     module = import_module(match.group('module'))
       >              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
       >   File "/nix/store/l4f8rn6y0jymzbmr08rayygy4xvchpxb-python3-3.12.5-x86_64-unknown-linux-gnufilc0/lib/python3.12/importlib/__init__.py", line 90, in import_module
       >     return _bootstrap._gcd_import(name[level:], package, level)
       >            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
       >   File "<frozen importlib._bootstrap>", line 1387, in _gcd_import
       >   File "<frozen importlib._bootstrap>", line 1360, in _find_and_load
       >   File "<frozen importlib._bootstrap>", line 1331, in _find_and_load_unlocked
       >   File "<frozen importlib._bootstrap>", line 935, in _load_unlocked
       >   File "/nix/store/rrgc0rmn4vnhb939qhnhqavrbw4v6lhp-python3.12-pytest-8.3.5-x86_64-unknown-linux-gnufilc0/lib/python3.12/site-packages/_pytest/assertion/rewrite.py", line 185, in exec_module
       >     exec(co, module.__dict__)
       >   File "/nix/store/ans2fad34fdsc56a15fyy9yv9pdsp5v2-python3.12-time-machine-2.16.0/lib/python3.12/site-packages/time_machine/__init__.py", line 26, in <module>
       >     import _time_machine
       > ModuleNotFoundError: No module named '_time_machine'
       For full logs, run:
         nix log /nix/store/1bygm83sv32appf0bbaw7zdmh0c720x7-python3.12-textual-3.2.0-x86_64-unknown-linux-gnufilc0.drv
critcl-3.3.1
→ unpackPhase
unpacking source archive /nix/store/547hxdlcjyz9bwqjf457xr4xdyr7yc25-source
source root is source
→ patchPhase
→ updateAutotoolsGnuConfigScriptsPhase
→ updateAutotoolsGnuConfigScriptsPhase
→ configurePhase
no configure script, doing nothing
→ installPhase
Installing into:
	Packages:	/nix/store/40nr3p5jnhw7lg5y2xqy50xlgwjm0k5k-critcl-x86_64-unknown-linux-gnufilc0-3.3.1/lib
	Application:	/nix/store/40nr3p5jnhw7lg5y2xqy50xlgwjm0k5k-critcl-x86_64-unknown-linux-gnufilc0-3.3.1/bin
	Headers:	/nix/store/40nr3p5jnhw7lg5y2xqy50xlgwjm0k5k-critcl-x86_64-unknown-linux-gnufilc0-3.3.1/include
filc safety error: cannot handle inline asm (unsupported mnemonic for safe inline asm: syscall):   %19 = call i64 asm sideeffect "syscall\0A\09", "={ax},0,{rdi},{rsi},{rdx},{r10},~{memory},~{cc},~{r11},~{cx},~{dirflag},~{fpsr},~{flags}"(i64 257, i32 %filc_arg_trunc, i64 %18, i32 %filc_arg_trunc22, i32 %mode.0) #12, !dbg !62
    (libc.so.6666) ../sysdeps/unix/sysv/linux/openat64_nocancel.c:37:10: __GI___openat64_nocancel
    (libc.so.6666) ../sysdeps/unix/sysv/linux/opendir.c:75:16: __opendirat
    (libc.so.6666) ./fts-common.c:1369:38: fts_build
    (libc.so.6666) ./fts-common.c:992:45: __fts64_read
    (libtcl8.6.so) <somewhere>: TraverseUnixTree
    (libtcl8.6.so) <somewhere>: TclpObjCopyDirectory
    (libtcl8.6.so) <somewhere>: Tcl_FSCopyDirectory
    (libtcl8.6.so) <somewhere>: CopyRenameOneFile
    (libtcl8.6.so) <somewhere>: FileCopyRename
    (libtcl8.6.so) <somewhere>: TclFileCopyCmd
    (libtcl8.6.so) <somewhere>: Dispatch
    (libtcl8.6.so) <somewhere>: TclEvalEx
    (libtcl8.6.so) <somewhere>: Tcl_FSEvalFileEx
    (libtcl8.6.so) <somewhere>: Tcl_MainEx
    (tclsh) <somewhere>: main
    (libc.so.6666) ../sysdeps/nptl/libc_start_call_main.h:59:16: __libc_start_call_main
    (libc.so.6666) ../csu/libc-start.c:159:3: __libc_start_main
    (libpizlo.so) <runtime>: start_program
[48] filc panic: thwarted a futile attempt to violate memory safety.
/nix/store/vhkryxjrmsz87jfvdvyinp2q6q2fd48z-stdenv-linux/setup: line 1764:    48 Trace/breakpoint trap   tclsh ./build.tcl install --prefix $out
error: Cannot build '/nix/store/8479qdrcg04ask8iqfg1zrw2k8kzpmsi-critcl-x86_64-unknown-linux-gnufilc0-3.3.1.drv'.
       Reason: builder failed with exit code 133.
       Output paths:
         /nix/store/40nr3p5jnhw7lg5y2xqy50xlgwjm0k5k-critcl-x86_64-unknown-linux-gnufilc0-3.3.1
       Last 25 log lines:
       > Installing into:
       > 	Packages:	/nix/store/40nr3p5jnhw7lg5y2xqy50xlgwjm0k5k-critcl-x86_64-unknown-linux-gnufilc0-3.3.1/lib
       > 	Application:	/nix/store/40nr3p5jnhw7lg5y2xqy50xlgwjm0k5k-critcl-x86_64-unknown-linux-gnufilc0-3.3.1/bin
       > 	Headers:	/nix/store/40nr3p5jnhw7lg5y2xqy50xlgwjm0k5k-critcl-x86_64-unknown-linux-gnufilc0-3.3.1/include
       > filc safety error: cannot handle inline asm (unsupported mnemonic for safe inline asm: syscall):   %19 = call i64 asm sideeffect "syscall\0A\09", "={ax},0,{rdi},{rsi},{rdx},{r10},~{memory},~{cc},~{r11},~{cx},~{dirflag},~{fpsr},~{flags}"(i64 257, i32 %filc_arg_trunc, i64 %18, i32 %filc_arg_trunc22, i32 %mode.0) #12, !dbg !62
       >     (libc.so.6666) ../sysdeps/unix/sysv/linux/openat64_nocancel.c:37:10: __GI___openat64_nocancel
       >     (libc.so.6666) ../sysdeps/unix/sysv/linux/opendir.c:75:16: __opendirat
       >     (libc.so.6666) ./fts-common.c:1369:38: fts_build
       >     (libc.so.6666) ./fts-common.c:992:45: __fts64_read
       >     (libtcl8.6.so) <somewhere>: TraverseUnixTree
       >     (libtcl8.6.so) <somewhere>: TclpObjCopyDirectory
       >     (libtcl8.6.so) <somewhere>: Tcl_FSCopyDirectory
       >     (libtcl8.6.so) <somewhere>: CopyRenameOneFile
       >     (libtcl8.6.so) <somewhere>: FileCopyRename
       >     (libtcl8.6.so) <somewhere>: TclFileCopyCmd
       >     (libtcl8.6.so) <somewhere>: Dispatch
       >     (libtcl8.6.so) <somewhere>: TclEvalEx
       >     (libtcl8.6.so) <somewhere>: Tcl_FSEvalFileEx
       >     (libtcl8.6.so) <somewhere>: Tcl_MainEx
       >     (tclsh) <somewhere>: main
       >     (libc.so.6666) ../sysdeps/nptl/libc_start_call_main.h:59:16: __libc_start_call_main
       >     (libc.so.6666) ../csu/libc-start.c:159:3: __libc_start_main
       >     (libpizlo.so) <runtime>: start_program
       > [48] filc panic: thwarted a futile attempt to violate memory safety.
       > /nix/store/vhkryxjrmsz87jfvdvyinp2q6q2fd48z-stdenv-linux/setup: line 1764:    48 Trace/breakpoint trap   tclsh ./build.tcl install --prefix $out
       For full logs, run:
         nix log /nix/store/8479qdrcg04ask8iqfg1zrw2k8kzpmsi-critcl-x86_64-unknown-linux-gnufilc0-3.3.1.drv
tcllib-2.0
error: Cannot build '/nix/store/lkp6zc7hgyz5ilcdckid4kzvf0hxpxhy-tcllib-x86_64-unknown-linux-gnufilc0-2.0.drv'.
       Reason: 1 dependency failed.
       Output paths:
         /nix/store/0r0w7l2i1lr3ll5zms8infk469r78lkp-tcllib-x86_64-unknown-linux-gnufilc0-2.0
muparser-2.3.5
error: Cannot build '/nix/store/7pw70ilk0pyrlcbni7p1a9p7ryhh7k5l-muparser-x86_64-unknown-linux-gnufilc0-2.3.5.drv'.
       Reason: builder failed with exit code 1.
       Output paths:
         /nix/store/w5rlv4qfgqn8a26c6h0vdiaamhmy300j-muparser-x86_64-unknown-linux-gnufilc0-2.3.5
       Last 25 log lines:
       > Running phase: updateAutotoolsGnuConfigScriptsPhase
       > Running phase: configurePhase
       > fixing cmake files...
       > cmake flags: -DCMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY=OFF -DCMAKE_FIND_USE_PACKAGE_REGISTRY=OFF -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF -DCMAKE_INSTALL_LOCALEDIR=/nix/store/w5rlv4qfgqn8a26c6h0vdiaamhmy300j-muparser-x86_64-unknown-linux-gnufilc0-2.3.5/share/locale -DCMAKE_INSTALL_LIBEXECDIR=/nix/store/w5rlv4qfgqn8a26c6h0vdiaamhmy300j-muparser-x86_64-unknown-linux-gnufilc0-2.3.5/libexec -DCMAKE_INSTALL_LIBDIR=/nix/store/w5rlv4qfgqn8a26c6h0vdiaamhmy300j-muparser-x86_64-unknown-linux-gnufilc0-2.3.5/lib -DCMAKE_INSTALL_DOCDIR=/nix/store/w5rlv4qfgqn8a26c6h0vdiaamhmy300j-muparser-x86_64-unknown-linux-gnufilc0-2.3.5/share/doc/muParserProject -DCMAKE_INSTALL_INFODIR=/nix/store/w5rlv4qfgqn8a26c6h0vdiaamhmy300j-muparser-x86_64-unknown-linux-gnufilc0-2.3.5/share/info -DCMAKE_INSTALL_MANDIR=/nix/store/w5rlv4qfgqn8a26c6h0vdiaamhmy300j-muparser-x86_64-unknown-linux-gnufilc0-2.3.5/share/man -DCMAKE_INSTALL_INCLUDEDIR=/nix/store/w5rlv4qfgqn8a26c6h0vdiaamhmy300j-muparser-x86_64-unknown-linux-gnufilc0-2.3.5/include -DCMAKE_INSTALL_SBINDIR=/nix/store/w5rlv4qfgqn8a26c6h0vdiaamhmy300j-muparser-x86_64-unknown-linux-gnufilc0-2.3.5/sbin -DCMAKE_INSTALL_BINDIR=/nix/store/w5rlv4qfgqn8a26c6h0vdiaamhmy300j-muparser-x86_64-unknown-linux-gnufilc0-2.3.5/bin -DCMAKE_INSTALL_NAME_DIR=/nix/store/w5rlv4qfgqn8a26c6h0vdiaamhmy300j-muparser-x86_64-unknown-linux-gnufilc0-2.3.5/lib -DCMAKE_POLICY_DEFAULT_CMP0025=NEW -DCMAKE_FIND_FRAMEWORK=LAST -DCMAKE_STRIP=/nix/store/42rvnpz9javp8wx0lwk0374bxx527ffr-filc-cc-wrapper-/bin/strip -DCMAKE_RANLIB=/nix/store/42rvnpz9javp8wx0lwk0374bxx527ffr-filc-cc-wrapper-/bin/ranlib -DCMAKE_AR=/nix/store/42rvnpz9javp8wx0lwk0374bxx527ffr-filc-cc-wrapper-/bin/ar -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_INSTALL_PREFIX=/nix/store/w5rlv4qfgqn8a26c6h0vdiaamhmy300j-muparser-x86_64-unknown-linux-gnufilc0-2.3.5 -DCMAKE_SYSTEM_NAME=Linux -DCMAKE_SYSTEM_PROCESSOR=x86_64 -DCMAKE_HOST_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_PROCESSOR=x86_64 -DCMAKE_CROSSCOMPILING_EMULATOR=env
       > -- The C compiler identification is Clang 20.1.8
       > -- The CXX compiler identification is Clang 20.1.8
       > -- Detecting C compiler ABI info
       > -- Detecting C compiler ABI info - done
       > -- Check for working C compiler: /nix/store/42rvnpz9javp8wx0lwk0374bxx527ffr-filc-cc-wrapper-/bin/clang - skipped
       > -- Detecting C compile features
       > -- Detecting C compile features - done
       > -- Detecting CXX compiler ABI info
       > -- Detecting CXX compiler ABI info - done
       > -- Check for working CXX compiler: /nix/store/42rvnpz9javp8wx0lwk0374bxx527ffr-filc-cc-wrapper-/bin/clang++ - skipped
       > -- Detecting CXX compile features
       > -- Detecting CXX compile features - done
       > CMake Error at /nix/store/sywrvcqgm7bf6njpfbkhd8iy4iaymhj2-cmake-3.31.6/share/cmake-3.31/Modules/FindPackageHandleStandardArgs.cmake:233 (message):
       >   Could NOT find OpenMP_C (missing: OpenMP_C_FLAGS OpenMP_C_LIB_NAMES)
       > Call Stack (most recent call first):
       >   /nix/store/sywrvcqgm7bf6njpfbkhd8iy4iaymhj2-cmake-3.31.6/share/cmake-3.31/Modules/FindPackageHandleStandardArgs.cmake:603 (_FPHSA_FAILURE_MESSAGE)
       >   /nix/store/sywrvcqgm7bf6njpfbkhd8iy4iaymhj2-cmake-3.31.6/share/cmake-3.31/Modules/FindOpenMP.cmake:616 (find_package_handle_standard_args)
       >   CMakeLists.txt:26 (find_package)
       >
       > 
       > -- Configuring incomplete, errors occurred!
       For full logs, run:
         nix log /nix/store/7pw70ilk0pyrlcbni7p1a9p7ryhh7k5l-muparser-x86_64-unknown-linux-gnufilc0-2.3.5.drv
mupdf-1.25.3
error: Cannot build '/nix/store/npxj4hc2ndd25a34gicg60xxkyf6g0nd-mupdf-x86_64-unknown-linux-gnufilc0-1.25.3.drv'.
       Reason: builder failed with exit code 2.
       Output paths:
         /nix/store/fjh1kwpw45wzpj5v79r0r1wbpks2zblf-mupdf-x86_64-unknown-linux-gnufilc0-1.25.3-man
         /nix/store/hw3f64b8dnfhk7s7vslymv4rx92vcbbw-mupdf-x86_64-unknown-linux-gnufilc0-1.25.3-dev
         /nix/store/np5s67xs0qpk17nkk7bg1mg8mr2i1krg-mupdf-x86_64-unknown-linux-gnufilc0-1.25.3-bin
         /nix/store/vglzc9wrnj9pqq0dpjmr70mgvkzrr76r-mupdf-x86_64-unknown-linux-gnufilc0-1.25.3
         /nix/store/vx8hnyah95jfvq1palqr9yk86266h86b-mupdf-x86_64-unknown-linux-gnufilc0-1.25.3-doc
       Last 25 log lines:
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: build/shared-release/resources/fonts/urw/Dingbats.cff.o: previous definition here
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: error: build/shared-release/resources/fonts/sil/CharisSIL-Italic.cff.o: multiple definition of '_binary__nix_store_hdhb0c160h0fhwznvhm9a6h176qbrdpp_filc_sysroot_with_metadata_lib_libpizlo_so_start'
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: build/shared-release/resources/fonts/urw/Dingbats.cff.o: previous definition here
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: error: build/shared-release/resources/fonts/sil/CharisSIL.cff.o: multiple definition of '_binary__nix_store_b3p6ski2imrn0rdjjdyb9xs7kz7fb848_filc_libcxx_git_lib_libc__abi_so_end'
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: build/shared-release/resources/fonts/urw/Dingbats.cff.o: previous definition here
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: error: build/shared-release/resources/fonts/sil/CharisSIL.cff.o: multiple definition of '_binary__nix_store_b3p6ski2imrn0rdjjdyb9xs7kz7fb848_filc_libcxx_git_lib_libc__abi_so_start'
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: build/shared-release/resources/fonts/urw/Dingbats.cff.o: previous definition here
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: error: build/shared-release/resources/fonts/sil/CharisSIL.cff.o: multiple definition of '_binary__nix_store_b3p6ski2imrn0rdjjdyb9xs7kz7fb848_filc_libcxx_git_lib_libc___so_end'
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: build/shared-release/resources/fonts/urw/Dingbats.cff.o: previous definition here
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: error: build/shared-release/resources/fonts/sil/CharisSIL.cff.o: multiple definition of '_binary__nix_store_b3p6ski2imrn0rdjjdyb9xs7kz7fb848_filc_libcxx_git_lib_libc___so_start'
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: build/shared-release/resources/fonts/urw/Dingbats.cff.o: previous definition here
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: error: build/shared-release/resources/fonts/sil/CharisSIL.cff.o: multiple definition of '_binary__nix_store_hdhb0c160h0fhwznvhm9a6h176qbrdpp_filc_sysroot_with_metadata_lib_libyolom_so_end'
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: build/shared-release/resources/fonts/urw/Dingbats.cff.o: previous definition here
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: error: build/shared-release/resources/fonts/sil/CharisSIL.cff.o: multiple definition of '_binary__nix_store_hdhb0c160h0fhwznvhm9a6h176qbrdpp_filc_sysroot_with_metadata_lib_libyolom_so_start'
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: build/shared-release/resources/fonts/urw/Dingbats.cff.o: previous definition here
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: error: build/shared-release/resources/fonts/sil/CharisSIL.cff.o: multiple definition of '_binary__nix_store_hdhb0c160h0fhwznvhm9a6h176qbrdpp_filc_sysroot_with_metadata_lib_libyoloc_so_end'
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: build/shared-release/resources/fonts/urw/Dingbats.cff.o: previous definition here
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: error: build/shared-release/resources/fonts/sil/CharisSIL.cff.o: multiple definition of '_binary__nix_store_hdhb0c160h0fhwznvhm9a6h176qbrdpp_filc_sysroot_with_metadata_lib_libyoloc_so_start'
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: build/shared-release/resources/fonts/urw/Dingbats.cff.o: previous definition here
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: error: build/shared-release/resources/fonts/sil/CharisSIL.cff.o: multiple definition of '_binary__nix_store_hdhb0c160h0fhwznvhm9a6h176qbrdpp_filc_sysroot_with_metadata_lib_libpizlo_so_end'
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: build/shared-release/resources/fonts/urw/Dingbats.cff.o: previous definition here
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: error: build/shared-release/resources/fonts/sil/CharisSIL.cff.o: multiple definition of '_binary__nix_store_hdhb0c160h0fhwznvhm9a6h176qbrdpp_filc_sysroot_with_metadata_lib_libpizlo_so_start'
       > /nix/store/fmj1ilm5jk1hba6s3cv6gkpgsjvkxaqv-binutils-2.43.1/bin/ld: build/shared-release/resources/fonts/urw/Dingbats.cff.o: previous definition here
       > clang-20: error: linker command failed with exit code 1 (use -v to see invocation)
       > make: *** [Makefile:110: build/shared-release/libmupdf.so] Error 1
       For full logs, run:
         nix log /nix/store/npxj4hc2ndd25a34gicg60xxkyf6g0nd-mupdf-x86_64-unknown-linux-gnufilc0-1.25.3.drv
musl-1.2.5
error: Cannot build '/nix/store/x8y251y8r5k73b76yjxayj3i6y81hnwr-musl-x86_64-unknown-linux-gnufilc0-1.2.5.drv'.
       Reason: builder failed with exit code 2.
       Output paths:
         /nix/store/8wxsnnyp8rh2llvpyvhi96ddhw11a3as-musl-x86_64-unknown-linux-gnufilc0-1.2.5-bin
         /nix/store/avf7jmir1i83zjs0rdjk6q51hsmhbx0p-musl-x86_64-unknown-linux-gnufilc0-1.2.5-dev
         /nix/store/cnw9ahylq4hnmgd8jcazjpw2vx246dzs-musl-x86_64-unknown-linux-gnufilc0-1.2.5-debug
         /nix/store/y5sw37g5nqp14b36jrzvnqyz4srs58s2-musl-x86_64-unknown-linux-gnufilc0-1.2.5
       Last 25 log lines:
       > clang -std=c99 -nostdinc -ffreestanding -fexcess-precision=standard -frounding-math -fno-strict-aliasing -Wa,--noexecstack -D_XOPEN_SOURCE=700 -I./arch/x86_64 -I./arch/generic -Iobj/src/internal -I./src/include -I./src/internal -Iobj/include -I./include  -g -O2 -fno-align-functions -pipe   -ffunction-sections -fdata-sections -w -Wno-pointer-to-int-cast -Werror=implicit-function-declaration -Werror=implicit-int -Werror=pointer-sign -Werror=pointer-arith -Werror=int-conversion -Werror=incompatible-pointer-types -Qunused-arguments -Waddress -Warray-bounds -Wchar-subscripts -Wduplicate-decl-specifier -Winit-self -Wreturn-type -Wsequence-point -Wstrict-aliasing -Wunused-function -Wunused-label -Wunused-variable -fstack-protector-strong -fPIC -c -o obj/src/ldso/x86_64/tlsdesc.lo src/ldso/x86_64/tlsdesc.s
       > clang -std=c99 -nostdinc -ffreestanding -fexcess-precision=standard -frounding-math -fno-strict-aliasing -Wa,--noexecstack -D_XOPEN_SOURCE=700 -I./arch/x86_64 -I./arch/generic -Iobj/src/internal -I./src/include -I./src/internal -Iobj/include -I./include  -g -O2 -fno-align-functions -pipe   -ffunction-sections -fdata-sections -w -Wno-pointer-to-int-cast -Werror=implicit-function-declaration -Werror=implicit-int -Werror=pointer-sign -Werror=pointer-arith -Werror=int-conversion -Werror=incompatible-pointer-types -Qunused-arguments -Waddress -Warray-bounds -Wchar-subscripts -Wduplicate-decl-specifier -Winit-self -Wreturn-type -Wsequence-point -Wstrict-aliasing -Wunused-function -Wunused-label -Wunused-variable -fstack-protector-strong -fPIC -c -o obj/src/math/x86_64/__invtrigl.lo src/math/x86_64/__invtrigl.s
       > clang -std=c99 -nostdinc -ffreestanding -fexcess-precision=standard -frounding-math -fno-strict-aliasing -Wa,--noexecstack -D_XOPEN_SOURCE=700 -I./arch/x86_64 -I./arch/generic -Iobj/src/internal -I./src/include -I./src/internal -Iobj/include -I./include  -g -O2 -fno-align-functions -pipe   -ffunction-sections -fdata-sections -w -Wno-pointer-to-int-cast -Werror=implicit-function-declaration -Werror=implicit-int -Werror=pointer-sign -Werror=pointer-arith -Werror=int-conversion -Werror=incompatible-pointer-types -Qunused-arguments -Waddress -Warray-bounds -Wchar-subscripts -Wduplicate-decl-specifier -Winit-self -Wreturn-type -Wsequence-point -Wstrict-aliasing -Wunused-function -Wunused-label -Wunused-variable -fstack-protector-strong -fPIC -c -o obj/src/math/x86_64/acosl.lo src/math/x86_64/acosl.s
       > clang-20: error: '-Wa,--noexecstack' is not supported by the sarcasm assembler (pass -yolo-assembler to use the built-in YOLO assembler)
       > clang-20: error: '-Wa,--compress-debug-sections' is not supported by the sarcasm assembler (pass -yolo-assembler to use the built-in YOLO assembler)
       > make: *** [Makefile:144: obj/crt/x86_64/crtn.o] Error 1
       > make: *** Waiting for unfinished jobs....
       > clang-20: error: '-Wa,--noexecstack' is not supported by the sarcasm assembler (pass -yolo-assembler to use the built-in YOLO assembler)
       > clang-20: error: '-Wa,--compress-debug-sections' is not supported by the sarcasm assembler (pass -yolo-assembler to use the built-in YOLO assembler)
       > clang-20: error: '-Wa,--noexecstack' is not supported by the sarcasm assembler (pass -yolo-assembler to use the built-in YOLO assembler)
       > clang-20: error: '-Wa,--compress-debug-sections' is not supported by the sarcasm assembler (pass -yolo-assembler to use the built-in YOLO assembler)
       > clang-20: error: '-Wa,--noexecstack' is not supported by the sarcasm assembler (pass -yolo-assembler to use the built-in YOLO assembler)
       > clang-20: error: '-Wa,--compress-debug-sections' is not supported by the sarcasm assembler (pass -yolo-assembler to use the built-in YOLO assembler)
       > clang-20: error: '-Wa,--noexecstack' is not supported by the sarcasm assembler (pass -yolo-assembler to use the built-in YOLO assembler)
       > clang-20: error: '-Wa,--compress-debug-sections' is not supported by the sarcasm assembler (pass -yolo-assembler to use the built-in YOLO assembler)
       > clang-20: error: '-Wa,--noexecstack' is not supported by the sarcasm assembler (pass -yolo-assembler to use the built-in YOLO assembler)
       > clang-20: error: '-Wa,--compress-debug-sections' is not supported by the sarcasm assembler (pass -yolo-assembler to use the built-in YOLO assembler)
       > make: *** [Makefile:153: obj/src/fenv/x86_64/fenv.lo] Error 1
       > make: *** [Makefile:153: obj/src/ldso/x86_64/dlsym.lo] Error 1
       > make: *** [Makefile:144: obj/crt/x86_64/crti.o] Error 1
       > make: *** [Makefile:153: obj/src/math/x86_64/__invtrigl.lo] Error 1
       > make: *** [Makefile:153: obj/src/ldso/x86_64/tlsdesc.lo] Error 1
       > clang-20: error: '-Wa,--noexecstack' is not supported by the sarcasm assembler (pass -yolo-assembler to use the built-in YOLO assembler)
       > clang-20: error: '-Wa,--compress-debug-sections' is not supported by the sarcasm assembler (pass -yolo-assembler to use the built-in YOLO assembler)
       > make: *** [Makefile:153: obj/src/math/x86_64/acosl.lo] Error 1
       For full logs, run:
         nix log /nix/store/x8y251y8r5k73b76yjxayj3i6y81hnwr-musl-x86_64-unknown-linux-gnufilc0-1.2.5.drv
mutmut-3.2.0
error: Cannot build '/nix/store/mkgjj27dkhm96wbq2safwrgzqqab4nsa-mutmut-3.2.0-x86_64-unknown-linux-gnufilc0.drv'.
       Reason: 2 dependencies failed.
       Output paths:
         /nix/store/568xf3wc91rx68y38vc9rbcavmbscmxq-mutmut-3.2.0-x86_64-unknown-linux-gnufilc0-dist
         /nix/store/i6p38457694b8rwridv4qdd0ribj8lya-mutmut-3.2.0-x86_64-unknown-linux-gnufilc0
mutt-ics-0.9.2
error: Cannot build '/nix/store/yg4r30h5vd59w5sjmlscvhxka43wlnhn-mutt-ics-0.9.2-x86_64-unknown-linux-gnufilc0.drv'.
       Reason: 1 dependency failed.
       Output paths:
         /nix/store/gpmqskbjyfs7n5l5dg74qlihycrdij99-mutt-ics-0.9.2-x86_64-unknown-linux-gnufilc0-dist
         /nix/store/ya47d7r1shm7rnvx9wh2v8hvnbm7cpb1-mutt-ics-0.9.2-x86_64-unknown-linux-gnufilc0
python3.12-mypy-1.15.0
error: building of '/nix/store/0m2fvy6pqb54rjblnv1xmf84rghhkr4n-python3.12-mypy-1.15.0-x86_64-unknown-linux-gnufilc0.drv' from in-memory derivation timed out after 900 seconds of silence
python3.12-mypy-protobuf-3.6.0
error: Cannot build '/nix/store/biycc8agz17mphb29d23wpfp7l4d7x9r-python3.12-mypy-protobuf-3.6.0-x86_64-unknown-linux-gnufilc0.drv'.
       Reason: 1 dependency failed.
       Output paths:
         /nix/store/qbyji3nkqwg0qypkrj2vhapsbang2ww2-python3.12-mypy-protobuf-3.6.0-x86_64-unknown-linux-gnufilc0-dist
         /nix/store/w2qamkybx9b5c8vwp54r7g3qj5k9azyd-python3.12-mypy-protobuf-3.6.0-x86_64-unknown-linux-gnufilc0
myrddin-0.3.1
error: Cannot build '/nix/store/l8riv446x7gxwcwrqy896l74w9agzsbw-myrddin-x86_64-unknown-linux-gnufilc0-0.3.1.drv'.
       Reason: builder failed with exit code 2.
       Output paths:
         /nix/store/qyc9infh4rdznp22lsgyl8aynyss4ljc-myrddin-x86_64-unknown-linux-gnufilc0-0.3.1
       Last 25 log lines:
       > ../parse//libparse.a(use.o):use.c:function pizlonatedFI1068_rdflt:(.text+0x63ba8): error: undefined reference to 'pizlonated_rdflt'
       > ../parse//libparse.a(use.o):use.c:function pizlonatedFI12769_rdlenstr:(.text+0x63d42): error: undefined reference to 'pizlonated_rdlenstr'
       > ../parse//libparse.a(use.o):use.c:function pizlonatedFI1065_htfree:(.text+0x66048): error: undefined reference to 'pizlonated_htfree'
       > ../parse//libparse.a(use.o):use.c:function pizlonatedFI12769_lfree:(.text+0x67872): error: undefined reference to 'pizlonated_lfree'
       > ../parse//libparse.a(use.o):use.c:function pizlonatedFI12777_strjoin:(.text+0x68f95): error: undefined reference to 'pizlonated_strjoin'
       > ../parse//libparse.a(use.o):use.c:function pizlonatedFI2528_wrbyte:(.text+0x6960d): error: undefined reference to 'pizlonated_wrbyte'
       > ../parse//libparse.a(use.o):use.c:function pizlonatedFI2528_wrint:(.text+0x6975d): error: undefined reference to 'pizlonated_wrint'
       > ../parse//libparse.a(use.o):use.c:function pizlonatedFI12769_wrstr:(.text+0x698b2): error: undefined reference to 'pizlonated_wrstr'
       > ../parse//libparse.a(use.o):use.c:function pizlonatedFI2528_wrbool:(.text+0x69e4d): error: undefined reference to 'pizlonated_wrbool'
       > ../parse//libparse.a(use.o):use.c:function pizlonatedFI1066_bscount:(.text+0x69f98): error: undefined reference to 'pizlonated_bscount'
       > ../parse//libparse.a(use.o):use.c:function pizlonatedFI5454_wrflt:(.text+0x6a44e): error: undefined reference to 'pizlonated_wrflt'
       > ../parse//libparse.a(use.o):use.c:function pizlonatedFI131272_wrlenstr:(.text+0x6a5b2): error: undefined reference to 'pizlonated_wrlenstr'
       > ../mi//libmi.a(cfg.o):cfg.c:function pizlonatedFI12769_bsunion:(.text+0x18ae2): error: undefined reference to 'pizlonated_bsunion'
       > ../mi//libmi.a(cfg.o):cfg.c:function pizlonatedFI2528_bsdel:(.text+0x18c3d): error: undefined reference to 'pizlonated_bsdel'
       > ../mi//libmi.a(cfg.o):cfg.c:function pizlonatedFI1073_bsclear:(.text+0x193eb): error: undefined reference to 'pizlonated_bsclear'
       > ../mi//libmi.a(cfg.o):cfg.c:function pizlonatedFI1066_bsisempty:(.text+0x19768): error: undefined reference to 'pizlonated_bsisempty'
       > ../mi//libmi.a(cfg.o):cfg.c:function pizlonatedFI1066_bsmax:(.text+0x1b1f8): error: undefined reference to 'pizlonated_bsmax'
       > ../mi//libmi.a(match.o):match.c:function pizlonatedFI318536_lcat:(.text+0x472cf): error: undefined reference to 'pizlonated_lcat'
       > ../mi//libmi.a(reaching.o):reaching.c:function pizlonatedFI12769_bsunion:(.text+0xe1c2): error: undefined reference to 'pizlonated_bsunion'
       > ../mi//libmi.a(reaching.o):reaching.c:function pizlonatedFI12769_bsdiff:(.text+0xe512): error: undefined reference to 'pizlonated_bsdiff'
       > ../mi//libmi.a(reaching.o):reaching.c:function pizlonatedFI12770_bseq:(.text+0xe675): error: undefined reference to 'pizlonated_bseq'
       > clang-20: error: linker command failed with exit code 1 (use -v to see invocation)
       > make[1]: *** [../mk/c.mk:30: 6m] Error 1
       > make[1]: Leaving directory '/build/source/6'
       > make: *** [mk/c.mk:36: subdirs] Error 1
       For full logs, run:
         nix log /nix/store/l8riv446x7gxwcwrqy896l74w9agzsbw-myrddin-x86_64-unknown-linux-gnufilc0-0.3.1.drv
n2048-0.1
error: Cannot build '/nix/store/brbvx1j4c46bhlkz0jb6l6r9l61hrq89-n2048-x86_64-unknown-linux-gnufilc0-0.1.drv'.
       Reason: builder failed with exit code 2.
       Output paths:
         /nix/store/ldf3gnahvwai3hv7qsrn9phxswbzqz2x-n2048-x86_64-unknown-linux-gnufilc0-0.1
       Last 14 log lines:
       > Running phase: unpackPhase
       > unpacking source archive /nix/store/809f2722ajqlhm94bm3k3iklm8gdxvkx-n2048_v0.1.tar.gz
       > source root is n2048_v0.1
       > setting SOURCE_DATE_EPOCH to timestamp 1402923741 of file "n2048_v0.1/n2048.6"
       > Running phase: patchPhase
       > Running phase: updateAutotoolsGnuConfigScriptsPhase
       > Running phase: updateAutotoolsGnuConfigScriptsPhase
       > Running phase: configurePhase
       > no configure script, doing nothing
       > Running phase: buildPhase
       > build flags: SHELL=/nix/store/cfqbabpc7xwg8akbcchqbq3cai6qq2vs-bash-5.2p37/bin/bash DESTDIR=\$\(out\)
       > gcc Main.c -c -I. -I/usr/include -I/usr/local/include -I/usr/include/ncurses -I/usr/local/include/ncurses -O3 -Wall -std=c99
       > /nix/store/cfqbabpc7xwg8akbcchqbq3cai6qq2vs-bash-5.2p37/bin/bash: line 1: gcc: command not found
       > make: *** [Makefile:50: Main.o] Error 127
       For full logs, run:
         nix log /nix/store/brbvx1j4c46bhlkz0jb6l6r9l61hrq89-n2048-x86_64-unknown-linux-gnufilc0-0.1.drv
nagelfar-1.3.3
error: Cannot build '/nix/store/5hx21z8n1ph3i8mbd4xzkc7541vf6fa2-nagelfar-x86_64-unknown-linux-gnufilc0-1.3.3.drv'.
       Reason: 1 dependency failed.
       Output paths:
         /nix/store/n9q7bbx2jhqkrwnlwjxr9wjbl3yv05hb-nagelfar-x86_64-unknown-linux-gnufilc0-1.3.3
namecoind-28.0
error: Cannot build '/nix/store/lhfpd4fidws7dgjmawjvsamz88fbn2gg-namecoind-x86_64-unknown-linux-gnufilc0-28.0.drv'.
       Reason: builder failed with exit code 2.
       Output paths:
         /nix/store/qafb89bp3k05ij6gbakjl0xafyfiq4i8-namecoind-x86_64-unknown-linux-gnufilc0-28.0
       Last 25 log lines:
       > libbitcoin_node.a(libbitcoin_node_a-validation.o):validation.cpp:function pizlonatedFI403_log:(.text+0x1cd015): error: undefined reference to 'pizlonated_log'
       > libbitcoin_node.a(libbitcoin_node_a-validation.o):validation.cpp:function pizlonatedFI269_log2f:(.text+0x1d8395): error: undefined reference to 'pizlonated_log2f'
       > clang-20: error: linker command failed with exit code 1 (use -v to see invocation)
       > make[2]: *** [Makefile:7549: namecoin-wallet] Error 1
       > libbitcoin_node.a(libbitcoin_node_a-addrman.o):addrman.cpp:function pizlonatedFI4792_pow:(.text+0x3902a): error: undefined reference to 'pizlonated_pow'
       > libbitcoin_node.a(libbitcoin_node_a-sigcache.o):sigcache.cpp:function pizlonatedFI269_log2f:(.text+0x7145): error: undefined reference to 'pizlonated_log2f'
       > libbitcoin_common.a(libbitcoin_common_a-bloom.o):bloom.cpp:function pizlonatedFI403_log:(.text+0x7465): error: undefined reference to 'pizlonated_log'
       > libbitcoin_common.a(libbitcoin_common_a-bloom.o):bloom.cpp:function pizlonatedFI403_exp:(.text+0x7ad5): error: undefined reference to 'pizlonated_exp'
       > libbitcoin_util.a(libbitcoin_util_a-random.o):random.cpp:function pizlonatedFI403_log1p:(.text+0xbce5): error: undefined reference to 'pizlonated_log1p'
       > clang-20: error: linker command failed with exit code 1 (use -v to see invocation)
       > make[2]: *** [Makefile:7555: namecoind] Error 1
       > In file included from test/fuzz/miniscript.cpp:8:
       > ./script/miniscript.h:153:34: warning: identifier '_mst' preceded by whitespace in a literal operator declaration is deprecated [-Wdeprecated-literal-operator]
       >   153 | inline consteval Type operator"" _mst(const char* c, size_t l) {
       >       |                       ~~~~~~~~~~~^~~~
       >       |                       operator""_mst
       > test/fuzz/miniscript.cpp:23:30: warning: identifier '_mst' preceded by whitespace in a literal operator declaration is deprecated [-Wdeprecated-literal-operator]
       >    23 | using miniscript::operator"" _mst;
       >       |                   ~~~~~~~~~~~^~~~
       >       |                   operator""_mst
       > 2 warnings generated.
       > make[2]: Leaving directory '/build/source/src'
       > make[1]: *** [Makefile:20867: all-recursive] Error 1
       > make[1]: Leaving directory '/build/source/src'
       > make: *** [Makefile:746: all-recursive] Error 1
       For full logs, run:
         nix log /nix/store/lhfpd4fidws7dgjmawjvsamz88fbn2gg-namecoind-x86_64-unknown-linux-gnufilc0-28.0.drv
nanobench-4.3.11
error: Cannot build '/nix/store/q3fnhkwzbl5sxmgnarjmn2d684mhbz9z-nanobench-x86_64-unknown-linux-gnufilc0-4.3.11.drv'.
       Reason: builder failed with exit code 2.
       Output paths:
         /nix/store/ka0p9b5l0a2jy903vbkamsi8l7bxzh2x-nanobench-x86_64-unknown-linux-gnufilc0-4.3.11
       Last 25 log lines:
       >    22 | #define _LIBCPP_HAS_THREAD_API_WIN32 0
       >       |         ^
       > /nix/store/b3p6ski2imrn0rdjjdyb9xs7kz7fb848-filc-libcxx-git/include/c++/__config_site:23:9: error: macro name is a reserved identifier [-Werror,-Wreserved-macro-identifier]
       >    23 | #define _LIBCPP_HAS_THREAD_API_C11 0 // FIXME: Is this guarding dead code?
       >       |         ^
       > /nix/store/b3p6ski2imrn0rdjjdyb9xs7kz7fb848-filc-libcxx-git/include/c++/__config_site:25:9: error: macro name is a reserved identifier [-Werror,-Wreserved-macro-identifier]
       >    25 | #define _LIBCPP_HAS_VENDOR_AVAILABILITY_ANNOTATIONS 0
       >       |         ^
       > /nix/store/b3p6ski2imrn0rdjjdyb9xs7kz7fb848-filc-libcxx-git/include/c++/__config_site:28:9: error: macro name is a reserved identifier [-Werror,-Wreserved-macro-identifier]
       >    28 | #define _LIBCPP_HAS_FILESYSTEM 1
       >       |         ^
       > /nix/store/b3p6ski2imrn0rdjjdyb9xs7kz7fb848-filc-libcxx-git/include/c++/__config_site:29:9: error: macro name is a reserved identifier [-Werror,-Wreserved-macro-identifier]
       >    29 | #define _LIBCPP_HAS_RANDOM_DEVICE 1
       >       |         ^
       > /nix/store/b3p6ski2imrn0rdjjdyb9xs7kz7fb848-filc-libcxx-git/include/c++/__config_site:30:9: error: macro name is a reserved identifier [-Werror,-Wreserved-macro-identifier]
       >    30 | #define _LIBCPP_HAS_LOCALIZATION 1
       >       |         ^
       > fatal error: too many errors emitted, stopping now [-ferror-limit=]
       > 20 errors generated.
       > make[2]: *** [CMakeFiles/nb.dir/build.make:93: CMakeFiles/nb.dir/src/test/app/doctest.cpp.o] Error 1
       > make[1]: *** [CMakeFiles/Makefile2:219: CMakeFiles/nb.dir/all] Error 2
       > make[1]: *** Waiting for unfinished jobs....
       > [ 22%] Linking CXX static library libnanobench.a
       > [ 22%] Built target nanobench
       > make: *** [Makefile:136: all] Error 2
       For full logs, run:
         nix log /nix/store/q3fnhkwzbl5sxmgnarjmn2d684mhbz9z-nanobench-x86_64-unknown-linux-gnufilc0-4.3.11.drv
nanodbc-2.14.0
error: Cannot build '/nix/store/8izz01nkcmcimgv7xaz39dccvvld1cv4-nanodbc-x86_64-unknown-linux-gnufilc0-2.14.0.drv'.
       Reason: builder failed with exit code 2.
       Output paths:
         /nix/store/n06f2ndp729q1zk7g8zw2kxf8v9g55pj-nanodbc-x86_64-unknown-linux-gnufilc0-2.14.0
       Last 25 log lines:
       > /nix/store/b3p6ski2imrn0rdjjdyb9xs7kz7fb848-filc-libcxx-git/include/c++/__string/char_traits.h:46:8: note: template is declared here
       >    46 | struct char_traits;
       >       |        ^
       > /build/source/nanodbc/nanodbc.cpp:3566:52: error: implicit instantiation of undefined template 'std::char_traits<unsigned char>'
       >  3566 |             dsn.name = string(&name[0], &name[std::char_traits<NANODBC_SQLCHAR>::length(name)]);
       >       |                                                    ^
       > /nix/store/b3p6ski2imrn0rdjjdyb9xs7kz7fb848-filc-libcxx-git/include/c++/__string/char_traits.h:46:8: note: template is declared here
       >    46 | struct char_traits;
       >       |        ^
       > /build/source/nanodbc/nanodbc.cpp:3568:49: error: implicit instantiation of undefined template 'std::char_traits<unsigned char>'
       >  3568 |                 string(&driver[0], &driver[std::char_traits<NANODBC_SQLCHAR>::length(driver)]);
       >       |                                                 ^
       > /nix/store/b3p6ski2imrn0rdjjdyb9xs7kz7fb848-filc-libcxx-git/include/c++/__string/char_traits.h:46:8: note: template is declared here
       >    46 | struct char_traits;
       >       |        ^
       > /build/source/nanodbc/nanodbc.cpp:3619:54: error: implicit instantiation of undefined template 'std::char_traits<unsigned char>'
       >  3619 |             drv.name = string(&descr[0], &descr[std::char_traits<NANODBC_SQLCHAR>::length(descr)]);
       >       |                                                      ^
       > /nix/store/b3p6ski2imrn0rdjjdyb9xs7kz7fb848-filc-libcxx-git/include/c++/__string/char_traits.h:46:8: note: template is declared here
       >    46 | struct char_traits;
       >       |        ^
       > 4 errors generated.
       > make[2]: *** [CMakeFiles/nanodbc.dir/build.make:79: CMakeFiles/nanodbc.dir/nanodbc/nanodbc.cpp.o] Error 1
       > make[1]: *** [CMakeFiles/Makefile2:174: CMakeFiles/nanodbc.dir/all] Error 2
       > make: *** [Makefile:146: all] Error 2
       For full logs, run:
         nix log /nix/store/8izz01nkcmcimgv7xaz39dccvvld1cv4-nanodbc-x86_64-unknown-linux-gnufilc0-2.14.0.drv
nanoflann-1.7.1
error: Cannot build '/nix/store/k6qrsl8wp3x4yywcpfn54drzw01x1q2m-nanoflann-x86_64-unknown-linux-gnufilc0-1.7.1.drv'.
       Reason: builder failed with exit code 2.
       Output paths:
         /nix/store/nf6lnhz3rzyhrlphr7rn7nkw8ry88r0z-nanoflann-x86_64-unknown-linux-gnufilc0-1.7.1
       Last 25 log lines:
       > CMakeFiles/SO3_adaptor_example.dir/SO3_adaptor_example.cpp.o:SO3_adaptor_example.cpp:function pizlonatedFI403_cos:(.text+0x3b41): error: undefined reference to 'pizlonated_cos'
       > CMakeFiles/SO3_adaptor_example.dir/SO3_adaptor_example.cpp.o:SO3_adaptor_example.cpp:function pizlonatedFI403_sin:(.text+0x3c11): error: undefined reference to 'pizlonated_sin'
       > clang-20: error: linker command failed with exit code 1 (use -v to see invocation)
       > make[2]: *** [examples/CMakeFiles/SO3_adaptor_example.dir/build.make:100: bin/SO3_adaptor_example] Error 1
       > make[1]: *** [CMakeFiles/Makefile2:403: examples/CMakeFiles/SO3_adaptor_example.dir/all] Error 2
       > make[1]: *** Waiting for unfinished jobs....
       > [ 37%] Linking CXX executable ../bin/pointcloud_custom_resultset
       > [ 37%] Built target pointcloud_custom_resultset
       > [ 41%] Linking CXX executable ../bin/pointcloud_custom_metric
       > CMakeFiles/pointcloud_custom_metric.dir/pointcloud_custom_metric.cpp.o:pointcloud_custom_metric.cpp:function pizlonatedFI4792_pow:(.text+0x4df6): error: undefined reference to 'pizlonated_pow'
       > clang-20: error: linker command failed with exit code 1 (use -v to see invocation)
       > make[2]: *** [examples/CMakeFiles/pointcloud_custom_metric.dir/build.make:100: bin/pointcloud_custom_metric] Error 1
       > make[1]: *** [CMakeFiles/Makefile2:339: examples/CMakeFiles/pointcloud_custom_metric.dir/all] Error 2
       > [ 45%] Linking CXX executable ../bin/pointcloud_adaptor_example
       > [ 45%] Built target pointcloud_adaptor_example
       > [ 50%] Linking CXX executable ../bin/dynamic_pointcloud_example
       > CMakeFiles/dynamic_pointcloud_example.dir/dynamic_pointcloud_example.cpp.o:dynamic_pointcloud_example.cpp:function pizlonatedFI403_log2:(.text+0x24d1): error: undefined reference to 'pizlonated_log2'
       > clang-20: error: linker command failed with exit code 1 (use -v to see invocation)
       > make[2]: *** [examples/CMakeFiles/dynamic_pointcloud_example.dir/build.make:100: bin/dynamic_pointcloud_example] Error 1
       > make[1]: *** [CMakeFiles/Makefile2:211: examples/CMakeFiles/dynamic_pointcloud_example.dir/all] Error 2
       > [ 54%] Linking CXX executable ../bin/pointcloud_example
       > [ 54%] Built target pointcloud_example
       > [ 58%] Linking CXX executable ../bin/pointcloud_kdd_radius
       > [ 58%] Built target pointcloud_kdd_radius
       > make: *** [Makefile:146: all] Error 2
       For full logs, run:
         nix log /nix/store/k6qrsl8wp3x4yywcpfn54drzw01x1q2m-nanoflann-x86_64-unknown-linux-gnufilc0-1.7.1.drv
python3.12-mypy-1.15.0
error: build of '/nix/store/0m2fvy6pqb54rjblnv1xmf84rghhkr4n-python3.12-mypy-1.15.0-x86_64-unknown-linux-gnufilc0.drv^*', '/nix/store/5hx21z8n1ph3i8mbd4xzkc7541vf6fa2-nagelfar-x86_64-unknown-linux-gnufilc0-1.3.3.drv^*', '/nix/store/7pw70ilk0pyrlcbni7p1a9p7ryhh7k5l-muparser-x86_64-unknown-linux-gnufilc0-2.3.5.drv^*', '/nix/store/8izz01nkcmcimgv7xaz39dccvvld1cv4-nanodbc-x86_64-unknown-linux-gnufilc0-2.14.0.drv^*', '/nix/store/biycc8agz17mphb29d23wpfp7l4d7x9r-python3.12-mypy-protobuf-3.6.0-x86_64-unknown-linux-gnufilc0.drv^*', '/nix/store/brbvx1j4c46bhlkz0jb6l6r9l61hrq89-n2048-x86_64-unknown-linux-gnufilc0-0.1.drv^*', '/nix/store/k6qrsl8wp3x4yywcpfn54drzw01x1q2m-nanoflann-x86_64-unknown-linux-gnufilc0-1.7.1.drv^*', '/nix/store/l8riv446x7gxwcwrqy896l74w9agzsbw-myrddin-x86_64-unknown-linux-gnufilc0-0.3.1.drv^*', '/nix/store/lhfpd4fidws7dgjmawjvsamz88fbn2gg-namecoind-x86_64-unknown-linux-gnufilc0-28.0.drv^*', '/nix/store/mkgjj27dkhm96wbq2safwrgzqqab4nsa-mutmut-3.2.0-x86_64-unknown-linux-gnufilc0.drv^*', '/nix/store/npxj4hc2ndd25a34gicg60xxkyf6g0nd-mupdf-x86_64-unknown-linux-gnufilc0-1.25.3.drv^*', '/nix/store/q3fnhkwzbl5sxmgnarjmn2d684mhbz9z-nanobench-x86_64-unknown-linux-gnufilc0-4.3.11.drv^*', '/nix/store/x8y251y8r5k73b76yjxayj3i6y81hnwr-musl-x86_64-unknown-linux-gnufilc0-1.2.5.drv^*', '/nix/store/yg4r30h5vd59w5sjmlscvhxka43wlnhn-mutt-ics-0.9.2-x86_64-unknown-linux-gnufilc0.drv^*' failed

End of log