pythonPackages.pdftotext: init at 2.1.1

This commit is contained in:
Erik Arvstedt
2019-04-29 11:41:43 +02:00
parent 8646d2a2bb
commit 0babb25bb3
2 changed files with 22 additions and 0 deletions
@@ -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 ];
};
}