pythonPackages.pdfminer: replacing pdfminer with pdfminer_six
This commit is contained in:
parent
b37cb1de2b
commit
a3caa7bd05
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, buildPythonPackage, fetchFromGitHub, six, pycryptodome, chardet, nose, pytest }:
|
{ stdenv, buildPythonPackage, python, fetchFromGitHub, six, pycryptodome, chardet, nose, pytest }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pdfminer_six";
|
pname = "pdfminer_six";
|
||||||
|
@ -15,13 +15,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
checkInputs = [ nose pytest ];
|
checkInputs = [ nose pytest ];
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
# some crappy hack to ensure the test do not fail for python3
|
${python.interpreter} -m pytest
|
||||||
# for some reason importing from the folder tools fails :\
|
|
||||||
cp tools/dumppdf.py tests/
|
|
||||||
cp tools/pdf2txt.py tests/
|
|
||||||
sed -i '/from tools import dumppdf/c\ import dumppdf' tests/test_tools_dumppdf.py
|
|
||||||
sed -i '/import tools.pdf2txt as pdf2txt/c\import pdf2txt as pdf2txt' tests/test_tools_pdf2txt.py
|
|
||||||
pytest
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
|
@ -311,7 +311,7 @@ in {
|
||||||
|
|
||||||
outcome = callPackage ../development/python-modules/outcome {};
|
outcome = callPackage ../development/python-modules/outcome {};
|
||||||
|
|
||||||
pdfminer_six = callPackage ../development/python-modules/pdfminer_six { };
|
pdfminer = callPackage ../development/python-modules/pdfminer_six { };
|
||||||
|
|
||||||
plantuml = callPackage ../tools/misc/plantuml { };
|
plantuml = callPackage ../tools/misc/plantuml { };
|
||||||
|
|
||||||
|
@ -3784,28 +3784,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 {
|
peppercorn = buildPythonPackage rec {
|
||||||
name = "peppercorn-0.5";
|
name = "peppercorn-0.5";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue