rdkafka: 2.11.0 -> 2.11.1 (#439434)

authored by Weijia Wang and committed by GitHub 9c4ebdef 7906136a

+6 -5
+2 -2
pkgs/by-name/rd/rdkafka/package.nix
··· 15 16 stdenv.mkDerivation (finalAttrs: { 17 pname = "rdkafka"; 18 - version = "2.11.0"; 19 20 src = fetchFromGitHub { 21 owner = "confluentinc"; 22 repo = "librdkafka"; 23 tag = "v${finalAttrs.version}"; 24 - sha256 = "sha256-37lCQ+CFeTRQwL6FCl79RSGw+nRKr0DeuXob9CjiVnk="; 25 }; 26 27 outputs = [
··· 15 16 stdenv.mkDerivation (finalAttrs: { 17 pname = "rdkafka"; 18 + version = "2.11.1"; 19 20 src = fetchFromGitHub { 21 owner = "confluentinc"; 22 repo = "librdkafka"; 23 tag = "v${finalAttrs.version}"; 24 + sha256 = "sha256-Hg0l44wFQSk8x14V4CxJN80aGrhaj3CIFOYBfNUbG3E="; 25 }; 26 27 outputs = [
+4 -3
pkgs/development/python-modules/confluent-kafka/default.nix
··· 32 33 buildPythonPackage rec { 34 pname = "confluent-kafka"; 35 - version = "2.11.0"; 36 pyproject = true; 37 38 disabled = pythonOlder "3.7"; ··· 41 owner = "confluentinc"; 42 repo = "confluent-kafka-python"; 43 tag = "v${version}"; 44 - hash = "sha256-s4UeuFXieyUcFJsYHTaJBKfUssYZ7mt4YoHgXN7bZKI="; 45 }; 46 47 buildInputs = [ rdkafka ]; ··· 82 authlib 83 cachetools 84 httpx 85 ]; 86 }; 87 ··· 111 "tests/schema_registry/_async/test_config.py" 112 "tests/schema_registry/_sync/test_config.py" 113 # crashes the test runner on shutdown 114 - "tests/test_KafkaError.py" 115 ]; 116 117 meta = with lib; {
··· 32 33 buildPythonPackage rec { 34 pname = "confluent-kafka"; 35 + version = "2.11.1"; 36 pyproject = true; 37 38 disabled = pythonOlder "3.7"; ··· 41 owner = "confluentinc"; 42 repo = "confluent-kafka-python"; 43 tag = "v${version}"; 44 + hash = "sha256-WpvWv6UG7T0yJ1ZKZweHbWjh+C0PbEIYbbMAS4yyhzg="; 45 }; 46 47 buildInputs = [ rdkafka ]; ··· 82 authlib 83 cachetools 84 httpx 85 + orjson 86 ]; 87 }; 88 ··· 112 "tests/schema_registry/_async/test_config.py" 113 "tests/schema_registry/_sync/test_config.py" 114 # crashes the test runner on shutdown 115 + "tests/test_kafka_error.py" 116 ]; 117 118 meta = with lib; {