Sourcing python-remove-tests-dir-hook Sourcing python-catch-conflicts-hook.sh Sourcing python-remove-bin-bytecode-hook.sh Sourcing setuptools-build-hook Using setuptoolsBuildPhase Sourcing pypa-install-hook Using pypaInstallPhase Sourcing python-imports-check-hook.sh Using pythonImportsCheckPhase Sourcing python-namespaces-hook Sourcing python-catch-conflicts-hook.sh Running phase: unpackPhase unpacking source archive /nix/store/16jsjshv2qyvxq8j4bqdsg5z7lz3xgms-pysqlcipher3-1.2.0.tar.gz source root is pysqlcipher3-1.2.0 setting SOURCE_DATE_EPOCH to timestamp 1675033361 of file "pysqlcipher3-1.2.0/setup.cfg" Running phase: patchPhase Running phase: updateAutotoolsGnuConfigScriptsPhase Running phase: configurePhase no configure script, doing nothing Running phase: buildPhase Executing setuptoolsBuildPhase setup.py build flags: '' running bdist_wheel running build running build_py creating build/lib.linux-x86_64-cpython-313/pysqlcipher3 copying lib/dump.py -> build/lib.linux-x86_64-cpython-313/pysqlcipher3 copying lib/dbapi2.py -> build/lib.linux-x86_64-cpython-313/pysqlcipher3 copying lib/__init__.py -> build/lib.linux-x86_64-cpython-313/pysqlcipher3 creating build/lib.linux-x86_64-cpython-313/pysqlcipher3/test copying lib/test/__init__.py -> build/lib.linux-x86_64-cpython-313/pysqlcipher3/test creating build/lib.linux-x86_64-cpython-313/pysqlcipher3/test/python3 copying lib/test/python3/userfunctions.py -> build/lib.linux-x86_64-cpython-313/pysqlcipher3/test/python3 copying lib/test/python3/types.py -> build/lib.linux-x86_64-cpython-313/pysqlcipher3/test/python3 copying lib/test/python3/transactions.py -> build/lib.linux-x86_64-cpython-313/pysqlcipher3/test/python3 copying lib/test/python3/sqlcipher.py -> build/lib.linux-x86_64-cpython-313/pysqlcipher3/test/python3 copying lib/test/python3/regression.py -> build/lib.linux-x86_64-cpython-313/pysqlcipher3/test/python3 copying lib/test/python3/hooks.py -> build/lib.linux-x86_64-cpython-313/pysqlcipher3/test/python3 copying lib/test/python3/factory.py -> build/lib.linux-x86_64-cpython-313/pysqlcipher3/test/python3 copying lib/test/python3/dump.py -> build/lib.linux-x86_64-cpython-313/pysqlcipher3/test/python3 copying lib/test/python3/dbapi.py -> build/lib.linux-x86_64-cpython-313/pysqlcipher3/test/python3 copying lib/test/python3/__init__.py -> build/lib.linux-x86_64-cpython-313/pysqlcipher3/test/python3 running build_ext Builds a C extension linking against libsqlcipher library building 'pysqlcipher3._sqlite3' extension creating build/temp.linux-x86_64-cpython-313/src/python3 gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -I/nix/store/cy9r24swns95mwf56n8krzy5jlcmn1qp-libxcrypt-4.4.38/include -fPIC -DMODULE_NAME=\"pysqlcipher3.dbapi2\" -I/nix/store/1rp7i946hi7fa2wwx2f66w9jsqjh4n08-python3-3.13.2/include/python3.13 -c src/python3/cache.c -o build/temp.linux-x86_64-cpython-313/src/python3/cache.o gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -I/nix/store/cy9r24swns95mwf56n8krzy5jlcmn1qp-libxcrypt-4.4.38/include -fPIC -DMODULE_NAME=\"pysqlcipher3.dbapi2\" -I/nix/store/1rp7i946hi7fa2wwx2f66w9jsqjh4n08-python3-3.13.2/include/python3.13 -c src/python3/connection.c -o build/temp.linux-x86_64-cpython-313/src/python3/connection.o src/python3/connection.c: In function ‘pysqlite_do_all_statements’: src/python3/connection.c:223:9: warning: ‘PyWeakref_GetObject’ is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;] 223 | statement = PyWeakref_GetObject(weakref); | ^~~~~~~~~ In file included from /nix/store/1rp7i946hi7fa2wwx2f66w9jsqjh4n08-python3-3.13.2/include/python3.13/Python.h:113, from src/python3/cache.h:26, from src/python3/connection.c:24: /nix/store/1rp7i946hi7fa2wwx2f66w9jsqjh4n08-python3-3.13.2/include/python3.13/weakrefobject.h:30:44: note: declared here 30 | Py_DEPRECATED(3.13) PyAPI_FUNC(PyObject *) PyWeakref_GetObject(PyObject *ref); | ^~~~~~~~~~~~~~~~~~~ src/python3/connection.c:238:13: warning: ‘PyWeakref_GetObject’ is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;] 238 | cursor = (pysqlite_Cursor*)PyWeakref_GetObject(weakref); | ^~~~~~ /nix/store/1rp7i946hi7fa2wwx2f66w9jsqjh4n08-python3-3.13.2/include/python3.13/weakrefobject.h:30:44: note: declared here 30 | Py_DEPRECATED(3.13) PyAPI_FUNC(PyObject *) PyWeakref_GetObject(PyObject *ref); | ^~~~~~~~~~~~~~~~~~~ src/python3/connection.c: In function ‘_pysqlite_set_result’: src/python3/connection.c:527:13: error: implicit declaration of function ‘PyObject_AsCharBuffer’; did you mean ‘PyObject_CheckBuffer’? [8;;https://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration8;;] 527 | if (PyObject_AsCharBuffer(py_val, &buffer, &buflen) != 0) { | ^~~~~~~~~~~~~~~~~~~~~ | PyObject_CheckBuffer src/python3/connection.c: In function ‘_pysqlite_drop_unused_statement_references’: src/python3/connection.c:789:9: warning: ‘PyWeakref_GetObject’ is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;] 789 | if (PyWeakref_GetObject(weakref) != Py_None) { | ^~ /nix/store/1rp7i946hi7fa2wwx2f66w9jsqjh4n08-python3-3.13.2/include/python3.13/weakrefobject.h:30:44: note: declared here 30 | Py_DEPRECATED(3.13) PyAPI_FUNC(PyObject *) PyWeakref_GetObject(PyObject *ref); | ^~~~~~~~~~~~~~~~~~~ src/python3/connection.c: In function ‘_pysqlite_drop_unused_cursor_references’: src/python3/connection.c:821:9: warning: ‘PyWeakref_GetObject’ is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;] 821 | if (PyWeakref_GetObject(weakref) != Py_None) { | ^~ /nix/store/1rp7i946hi7fa2wwx2f66w9jsqjh4n08-python3-3.13.2/include/python3.13/weakrefobject.h:30:44: note: declared here 30 | Py_DEPRECATED(3.13) PyAPI_FUNC(PyObject *) PyWeakref_GetObject(PyObject *ref); | ^~~~~~~~~~~~~~~~~~~ src/python3/connection.c: In function ‘_authorizer_callback’: src/python3/connection.c:921:18: error: implicit declaration of function ‘_PyLong_AsInt’; did you mean ‘PyLong_AsInt’? [8;;https://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wimplicit-function-declaration-Wimplicit-function-declaration8;;] 921 | rc = _PyLong_AsInt(ret); | ^~~~~~~~~~~~~ | PyLong_AsInt src/python3/connection.c: In function ‘pysqlite_check_thread’: src/python3/connection.c:1146:41: warning: comparison of integer expressions of different signedness: ‘long unsigned int’ and ‘long int’ [8;;https://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wno-sign-compare-Wsign-compare8;;] 1146 | if (PyThread_get_thread_ident() != self->thread_ident) { | ^~ src/python3/connection.c: In function ‘pysqlite_connection_create_collation’: src/python3/connection.c:1546:24: warning: assignment discards ‘const’ qualifier from pointer target type [8;;https://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Wdiscarded-qualifiers-Wdiscarded-qualifiers8;;] 1546 | uppercase_name_str = _PyUnicode_AsString(uppercase_name); | ^ error: command '/nix/store/ii75mhh7sxl11167m1b86p0qrjsjyjmd-gcc-wrapper-14-20241116/bin/gcc' failed with exit code 1 Finished executing setuptoolsBuildPhase Running phase: installPhase Executing pypaInstallPhase /nix/store/vj66gqk86v5bpq0pclvx5w559k8al5n0-pypa-install-hook/nix-support/setup-hook: line 8: pushd: dist: No such file or directory