python3Packages.tika: init at 1.24

This commit is contained in:
Flakebi 2021-05-13 16:41:36 +02:00
parent 4c957da9bb
commit 21d05e6643
No known key found for this signature in database
GPG Key ID: 38E7ED984D7DCD02
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
, pyyaml
, requests
}:
buildPythonPackage rec {
pname = "tika";
version = "1.24";
src = fetchPypi {
inherit pname version;
sha256 = "wsUPQFYi90UxhBEE+ehcF1Ea7eEd6OU4XqsaKaMfGRs=";
};
propagatedBuildInputs = [ pyyaml requests ];
# Requires network
doCheck = false;
pythonImportsCheck = [ pname ];
meta = with lib; {
description = "A Python binding to the Apache Tika REST services";
homepage = "https://github.com/chrismattmann/tika-python";
license = licenses.asl20;
maintainers = with maintainers; [ Flakebi ];
};
}

View File

@ -8736,6 +8736,8 @@ in {
tifffile = callPackage ../development/python-modules/tifffile { };
tika = callPackage ../development/python-modules/tika { };
tiledb = callPackage ../development/python-modules/tiledb {
inherit (pkgs) tiledb;
};