pythonPackages.pdftotext: init at 2.1.1

This commit is contained in:
Erik Arvstedt 2019-01-27 15:26:27 +01:00
parent 8646d2a2bb
commit 0babb25bb3
No known key found for this signature in database
GPG Key ID: 33312B944DD97846
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ lib, buildPythonPackage, fetchPypi, poppler }:
buildPythonPackage rec {
pname = "pdftotext";
version = "2.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "1jwc2zpss0983wqqi0kpichasljsxar9c4ma8vycn8maw3pi3bg3";
};
buildInputs = [ poppler ];
meta = with lib; {
description = "Simple PDF text extraction";
homepage = https://github.com/jalan/pdftotext;
license = licenses.mit;
maintainers = with maintainers; [ earvstedt ];
};
}

View File

@ -582,6 +582,8 @@ in {
pdfminer = callPackage ../development/python-modules/pdfminer_six { };
pdftotext = callPackage ../development/python-modules/pdftotext { };
pdfx = callPackage ../development/python-modules/pdfx { };
perf = callPackage ../development/python-modules/perf { };