nixpkgs/pkgs/development/python-modules/pdftotext/default.nix

21 lines
492 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, poppler }:
buildPythonPackage rec {
pname = "pdftotext";
2020-08-16 18:31:09 +01:00
version = "2.1.5";
src = fetchPypi {
inherit pname version;
2020-08-16 18:31:09 +01:00
sha256 = "98aeb8b07a4127e1a30223bd933ef080bbd29aa88f801717ca6c5618380b8aa6";
};
buildInputs = [ poppler ];
meta = with lib; {
description = "Simple PDF text extraction";
homepage = "https://github.com/jalan/pdftotext";
license = licenses.mit;
maintainers = with maintainers; [ earvstedt ];
};
}