python3Packages.confluent-kafka: 2.10.0 -> 2.11.0

https://github.com/confluentinc/confluent-kafka-python/blob/v2.11.0/CHANGELOG.md

This commit was automatically generated using update-python-libraries.

Changed files
+9 -6
pkgs
development
python-modules
confluent-kafka
+9 -6
pkgs/development/python-modules/confluent-kafka/default.nix
···
buildPythonPackage rec {
pname = "confluent-kafka";
-
version = "2.10.0";
+
version = "2.11.0";
pyproject = true;
disabled = pythonOlder "3.7";
···
owner = "confluentinc";
repo = "confluent-kafka-python";
tag = "v${version}";
-
hash = "sha256-JJSGYGM/ukEABgzlHbw8xJr1HKVm/EW6EXEIJQBSCt8=";
+
hash = "sha256-s4UeuFXieyUcFJsYHTaJBKfUssYZ7mt4YoHgXN7bZKI=";
};
buildInputs = [ rdkafka ];
···
"tests/integration/"
"tests/test_Admin.py"
"tests/test_misc.py"
+
# Failed: async def functions are not natively supported.
+
"tests/schema_registry/_async"
# missing cel-python dependency
-
"tests/schema_registry/test_avro_serdes.py"
-
"tests/schema_registry/test_json_serdes.py"
-
"tests/schema_registry/test_proto_serdes.py"
+
"tests/schema_registry/_sync/test_avro_serdes.py"
+
"tests/schema_registry/_sync/test_json_serdes.py"
+
"tests/schema_registry/_sync/test_proto_serdes.py"
# missing tink dependency
-
"tests/schema_registry/test_config.py"
+
"tests/schema_registry/_async/test_config.py"
+
"tests/schema_registry/_sync/test_config.py"
# crashes the test runner on shutdown
"tests/test_KafkaError.py"
];