pythonPackages.pdfminer: 20181108 -> 20191020
This commit is contained in:
parent
303c94493c
commit
0431f59cb8
@ -1,21 +1,23 @@
|
|||||||
{ stdenv, buildPythonPackage, python, fetchFromGitHub, six, pycryptodome, chardet, nose, pytest, sortedcontainers }:
|
{ stdenv, buildPythonPackage, fetchFromGitHub, isPy3k, six, pycryptodome, chardet, nose, sortedcontainers }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pdfminer_six";
|
pname = "pdfminer_six";
|
||||||
version = "20181108";
|
version = "20191020";
|
||||||
|
|
||||||
|
# No tests in PyPi Tarball
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "pdfminer";
|
owner = "pdfminer";
|
||||||
repo = "pdfminer.six";
|
repo = "pdfminer.six";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1v8pcx43fgidv1g54s92k85anvcss08blkhm4yi1hn1ybl0mmw6c";
|
sha256 = "1fqn4ilcscvw6ws9a1yqiprha9d3rgw3d0280clkbk6s4l26wm9h";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ six pycryptodome chardet sortedcontainers ];
|
propagatedBuildInputs = [ six pycryptodome sortedcontainers ]
|
||||||
|
++ stdenv.lib.optionals isPy3k [ chardet ];
|
||||||
|
|
||||||
checkInputs = [ nose pytest ];
|
checkInputs = [ nose ];
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
${python.interpreter} -m pytest
|
nosetests
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
Loading…
Reference in New Issue
Block a user