python3Packages.poetry-core: backport test fix for Python 3.12.6

(cherry picked from commit f15ac02068)
This commit is contained in:
Alyssa Ross 2024-09-13 14:53:02 +02:00 committed by Martin Weinelt
parent 529f205125
commit b8d6d04674

View File

@ -3,6 +3,7 @@
stdenv,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
pythonOlder,
build,
git,
@ -27,6 +28,14 @@ buildPythonPackage rec {
hash = "sha256-vvwKbzGlvv2LTbXfJxQVM3nUXFGntgJxsku6cbRxCzw=";
};
patches = [
(fetchpatch {
name = "python-3.12.6.patch";
url = "https://github.com/python-poetry/poetry-core/commit/bd1ce358dec403c66e62176b11bfad77a51aacfd.patch";
hash = "sha256-dl2xTsn0nNAGJKNmgNPXlaeJOs1gNfDeQMJnD7EnKB4=";
})
];
nativeCheckInputs = [
build
git