python310Packages.avro 1.11.2 -> 1.11.3 https://repology.org/project/avro/versions attrpath: python310Packages.avro Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] Going to be running update for following packages: - python3.10-avro-1.11.2 Press Enter key to continue... Running update for: - python3.10-avro-1.11.2: UPDATING ... - python3.10-avro-1.11.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/avro/default.nix b/pkgs/development/python-modules/avro/default.nix index e59a7d475079..4158600e182f 100644 --- a/pkgs/development/python-modules/avro/default.nix +++ b/pkgs/development/python-modules/avro/default.nix @@ -8,14 +8,14 @@ buildPythonPackage rec { pname = "avro"; - version = "1.11.2"; + version = "1.11.3"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-U9zVv/zLmnITbwjQsYdxeV6vTu+wKLuq7V9OF4fw4mg="; + hash = "sha256-M5O7UTn5zweR0gV1bOHjmltYWGr1sVPWo7WhmWEOnRc="; }; propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [ No auto update branch exists Old version 1.11.2" not present in staging derivation file with contents: { lib , buildPythonPackage , pythonOlder , fetchPypi , typing-extensions , pytestCheckHook }: buildPythonPackage rec { pname = "avro"; version = "1.11.3"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; hash = "sha256-M5O7UTn5zweR0gV1bOHjmltYWGr1sVPWo7WhmWEOnRc="; }; propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [ typing-extensions ]; nativeCheckInputs = [ pytestCheckHook ]; disabledTests = [ # Requires network access "test_server_with_path" # AssertionError: 'reader type: null not compatible with writer type: int' "test_schema_compatibility_type_mismatch" ]; pythonImportsCheck = [ "avro" ]; meta = with lib; { description = "Python serialization and RPC framework"; homepage = "https://github.com/apache/avro"; changelog = "https://github.com/apache/avro/releases/tag/release-${version}"; license = licenses.asl20; maintainers = with maintainers; [ zimbatm ]; }; }