11 buildPythonPackage rec {
16 disabled = pythonOlder "3.7";
19 inherit pname version;
20 hash = "sha256-ytnFOyPO7Wmceva93O1C4sVy/WtAjCV6fU/E6M8uLWs=";
23 build-system = [ setuptools ];
25 dependencies = lib.optionals (pythonOlder "3.8") [ typing-extensions ];
27 nativeCheckInputs = [ pytest7CheckHook ];
30 # Requires network access
31 "test_server_with_path"
32 # AssertionError: 'reader type: null not compatible with writer type: int'
33 "test_schema_compatibility_type_mismatch"
36 pythonImportsCheck = [ "avro" ];
39 description = "Python serialization and RPC framework";
40 homepage = "https://github.com/apache/avro";
41 changelog = "https://github.com/apache/avro/releases/tag/release-${version}";
42 license = licenses.asl20;
43 maintainers = with maintainers; [ zimbatm ];