2021-11-23 21:33:39 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, poppler }:
|
2019-01-27 15:26:27 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pdftotext";
|
2021-11-25 23:47:03 +01:00
|
|
|
version = "2.2.2";
|
2019-01-27 15:26:27 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-11-25 23:47:03 +01:00
|
|
|
sha256 = "2a9aa89bc62022408781b39d188fabf5a3ad1103b6630f32c4e27e395f7966ee";
|
2019-01-27 15:26:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ poppler ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Simple PDF text extraction";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/jalan/pdftotext";
|
2019-01-27 15:26:27 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ earvstedt ];
|
|
|
|
};
|
|
|
|
}
|