pythonPackages.pdfminer: replacing pdfminer with pdfminer_six

This commit is contained in:
Assassinkin
2018-05-29 13:30:41 +01:00
parent b37cb1de2b
commit a3caa7bd05
2 changed files with 3 additions and 31 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, six, pycryptodome, chardet, nose, pytest }:
{ stdenv, buildPythonPackage, python, fetchFromGitHub, six, pycryptodome, chardet, nose, pytest }:
buildPythonPackage rec {
pname = "pdfminer_six";
@@ -15,13 +15,7 @@ buildPythonPackage rec {
checkInputs = [ nose pytest ];
checkPhase = ''
# some crappy hack to ensure the test do not fail for python3
# 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
${python.interpreter} -m pytest
'';
meta = with stdenv.lib; {