···22 lib,33 buildPythonPackage,44 fetchFromGitHub,55- pythonOlder,55+ anyio,66 hatchling,77 httpx,88}:991010buildPythonPackage rec {1111 pname = "tika-client";1212- version = "0.9.0";1212+ version = "0.10.0";1313 pyproject = true;1414-1515- disabled = pythonOlder "3.9";16141715 src = fetchFromGitHub {1816 owner = "stumpylog";1917 repo = "tika-client";2018 tag = version;2121- hash = "sha256-lg6syUbEbPb70iBa4lw5fVN8cvfWY3bkG2jNGxxNLDo=";1919+ hash = "sha256-XYyMp+02lWzE+3Txr+shVGVwalLEJHvoy988tA7SWgY=";2220 };23212422 build-system = [ hatchling ];25232626- dependencies = [ httpx ];2424+ dependencies = [2525+ anyio2626+ httpx2727+ ];27282829 pythonImportsCheck = [ "tika_client" ];29303030- # Almost all of the tests (all except one in 0.1.0) fail since there3131- # is no tika http API endpoint reachable. Since tika is not yet3232- # packaged for nixpkgs, it seems like an unreasonable amount of effort3333- # fixing these tests.3131+ # The tests expect the tika-server to run in a docker container3432 doChecks = false;35333634 meta = with lib; {