python3Packages.tika: init at 1.24
This commit is contained in:
parent
4c957da9bb
commit
21d05e6643
29
pkgs/development/python-modules/tika/default.nix
Normal file
29
pkgs/development/python-modules/tika/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user