Merge pull request #41207 from Assassinkin/pdfminer_six

pythonPackages.pdfminer: replacing pdfminer with pdfminer_six
This commit is contained in:
Frederik Rietdijk
2018-05-29 17:40:22 +02:00
committed by GitHub
2 changed files with 30 additions and 22 deletions

View File

@@ -311,6 +311,8 @@ in {
outcome = callPackage ../development/python-modules/outcome {};
pdfminer = callPackage ../development/python-modules/pdfminer_six { };
plantuml = callPackage ../tools/misc/plantuml { };
Pmw = callPackage ../development/python-modules/Pmw { };
@@ -3791,28 +3793,6 @@ in {
};
};
pdfminer = buildPythonPackage rec {
version = "20140328";
name = "pdfminer-${version}";
disabled = ! isPy27;
src = pkgs.fetchurl {
url = "mirror://pypi/p/pdfminer/pdfminer-${version}.tar.gz";
sha256 = "0qpjv4b776dwvpf5a7v19g41qsz97bv0qqsyvm7a31k50n9pn65s";
};
propagatedBuildInputs = with self; [ ];
meta = {
description = "Tool for extracting information from PDF documents";
homepage = http://euske.github.io/pdfminer/index.html;
license = licenses.mit;
maintainers = with maintainers; [ ];
};
};
peppercorn = buildPythonPackage rec {
name = "peppercorn-0.5";