python312Packages.pony: fix python3.12 compat

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
Co-authored-by: Robert Schütz <rschuetz17@gmail.com>
This commit is contained in:
Florian Brandes 2024-07-07 07:24:15 +02:00
parent 3cb3b8cbb9
commit 917a44a660
No known key found for this signature in database
GPG Key ID: 074048E893713170

View File

@ -4,8 +4,8 @@
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
pythonAtLeast,
setuptools,
fetchpatch,
}:
buildPythonPackage rec {
@ -13,7 +13,7 @@ buildPythonPackage rec {
version = "0.7.17";
pyproject = true;
disabled = pythonOlder "3.8" || pythonAtLeast "3.12";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "ponyorm";
@ -22,6 +22,15 @@ buildPythonPackage rec {
hash = "sha256-wBqw+YHKlxYplgsYL1pbkusHyPfCaVPcH/Yku6WDYbE=";
};
patches = [
# https://github.com/ponyorm/pony/pull/713
(fetchpatch {
name = "py312-compat.patch";
url = "https://github.com/ponyorm/pony/commit/5a37f6d59b6433d17d6d56b54f3726190e98c98f.patch";
hash = "sha256-niOoANOYHqrcmEXRZEDew2BM8P/s7UFnn0qpgB8V0Mk=";
})
];
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];