2021-12-19 01:06:50 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, poppler }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pdftotext";
|
2021-12-19 01:06:50 +00:00
|
|
|
version = "2.2.2";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-12-26 17:43:05 +00:00
|
|
|
sha256 = "2a9aa89bc62022408781b39d188fabf5a3ad1103b6630f32c4e27e395f7966ee";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ poppler ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Simple PDF text extraction";
|
|
|
|
homepage = "https://github.com/jalan/pdftotext";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ earvstedt ];
|
|
|
|
};
|
|
|
|
}
|