pythonPackages.pdftotext: init at 2.1.1
This commit is contained in:
parent
8646d2a2bb
commit
0babb25bb3
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -582,6 +582,8 @@ in {
|
||||||
|
|
||||||
pdfminer = callPackage ../development/python-modules/pdfminer_six { };
|
pdfminer = callPackage ../development/python-modules/pdfminer_six { };
|
||||||
|
|
||||||
|
pdftotext = callPackage ../development/python-modules/pdftotext { };
|
||||||
|
|
||||||
pdfx = callPackage ../development/python-modules/pdfx { };
|
pdfx = callPackage ../development/python-modules/pdfx { };
|
||||||
|
|
||||||
perf = callPackage ../development/python-modules/perf { };
|
perf = callPackage ../development/python-modules/perf { };
|
||||||
|
|
Loading…
Reference in New Issue