python312Packages.{etcd3,limits}: fix build (#351570)

This commit is contained in:
Aleksana 2024-10-29 19:51:13 +08:00 committed by GitHub
commit 0c9fe1106e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 20 additions and 5 deletions

View File

@ -11,12 +11,13 @@
pytestCheckHook,
six,
tenacity,
setuptools,
}:
buildPythonPackage rec {
pname = "etcd3";
version = "0.12.0";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "kragniz";
@ -25,7 +26,15 @@ buildPythonPackage rec {
hash = "sha256-YM72+fkCDYXl6DORJa/O0sqXqHDWQcFLv2ifQ9kEHBo=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
env = {
# make protobuf compatible with old versions
# https://developers.google.com/protocol-buffers/docs/news/2022-05-06#python-updates
PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION = "python";
};
dependencies = [
grpcio
protobuf
six
@ -49,10 +58,10 @@ buildPythonPackage rec {
pythonImportsCheck = [ "etcd3" ];
meta = with lib; {
meta = {
description = "Python client for the etcd API v3";
homepage = "https://github.com/kragniz/python-etcd3";
license = licenses.asl20;
maintainers = [ ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ moraxyc ];
};
}

View File

@ -90,6 +90,12 @@ buildPythonPackage rec {
async-etcd = [ aetcd ];
};
env = {
# make protobuf compatible with old versions
# https://developers.google.com/protocol-buffers/docs/news/2022-05-06#python-updates
PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION = "python";
};
doCheck = pythonOlder "3.12"; # SystemError in protobuf
nativeCheckInputs = [