Author: Michael R. Crusoe <crusoe@debian.org>
Description: Skip isolation to use the Debian packaged dependencies
Forwarded: not-needed
--- python-hatch-mypyc.orig/tests/utils.py
+++ python-hatch-mypyc/tests/utils.py
@@ -9,6 +9,6 @@
     if not args:
         args = ['-w']
 
-    process = subprocess.run([sys.executable, '-m', 'build', *args], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
+    process = subprocess.run([sys.executable, '-m', 'build', '--no-isolation', *args], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
     if process.returncode:  # no cov
         raise Exception(process.stdout.decode('utf-8'))
