nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.tika-client: 0.9.0 -> 0.10.0

Diff: https://github.com/stumpylog/tika-client/compare/0.9.0...0.10.0

Changelog: https://github.com/stumpylog/tika-client/blob/0.10.0/CHANGELOG.md

+8 -10
+8 -10
pkgs/development/python-modules/tika-client/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - pythonOlder, 5 + anyio, 6 6 hatchling, 7 7 httpx, 8 8 }: 9 9 10 10 buildPythonPackage rec { 11 11 pname = "tika-client"; 12 - version = "0.9.0"; 12 + version = "0.10.0"; 13 13 pyproject = true; 14 - 15 - disabled = pythonOlder "3.9"; 16 14 17 15 src = fetchFromGitHub { 18 16 owner = "stumpylog"; 19 17 repo = "tika-client"; 20 18 tag = version; 21 - hash = "sha256-lg6syUbEbPb70iBa4lw5fVN8cvfWY3bkG2jNGxxNLDo="; 19 + hash = "sha256-XYyMp+02lWzE+3Txr+shVGVwalLEJHvoy988tA7SWgY="; 22 20 }; 23 21 24 22 build-system = [ hatchling ]; 25 23 26 - dependencies = [ httpx ]; 24 + dependencies = [ 25 + anyio 26 + httpx 27 + ]; 27 28 28 29 pythonImportsCheck = [ "tika_client" ]; 29 30 30 - # Almost all of the tests (all except one in 0.1.0) fail since there 31 - # is no tika http API endpoint reachable. Since tika is not yet 32 - # packaged for nixpkgs, it seems like an unreasonable amount of effort 33 - # fixing these tests. 31 + # The tests expect the tika-server to run in a docker container 34 32 doChecks = false; 35 33 36 34 meta = with lib; {