depot/third_party/nixpkgs/pkgs/development/python-modules/tika/default.nix
Default email b6f2ab0a42 Project import generated by Copybara.
GitOrigin-RevId: 253aecf69ed7595aaefabde779aa6449195bebb7
2021-08-18 15:19:15 +02:00

29 lines
608 B
Nix

{ 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 ];
};
}