Unverified Commit c38c7d53 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python312Packages.tika-client: 0.6.0 -> 0.7.0 (#347669)

parents 550f1bfc 0d8aa070
Loading
Loading
Loading
Loading
+9 −7
Original line number Diff line number Diff line
@@ -6,10 +6,11 @@
  hatchling,
  httpx,
}:

buildPythonPackage rec {
  pname = "tika-client";
  version = "0.6.0";
  format = "pyproject";
  version = "0.7.0";
  pyproject = true;

  disabled = pythonOlder "3.8";

@@ -17,14 +18,15 @@ buildPythonPackage rec {
    owner = "stumpylog";
    repo = "tika-client";
    rev = "refs/tags/${version}";
    hash = "sha256-1Gc/WF8eEGT17z2CiuSLUIngDZVoHdBhfsUddNUBwWo=";
    hash = "sha256-0cv2HaquIUQOb5CPkCxSYvXDzu3OV7WKIT80jI+pjpY=";
  };

  propagatedBuildInputs = [
    hatchling
    httpx
  ];
  build-system = [ hatchling ];

  dependencies = [ httpx ];

  pythonImportsCheck = [ "tika_client" ];

  # Almost all of the tests (all except one in 0.1.0) fail since there
  # is no tika http API endpoint reachable. Since tika is not yet
  # packaged for nixpkgs, it seems like an unreasonable amount of effort