Merge pull request #119315 from dotlambda/pdfx-1.4.1
pythonPackages.pdfx: 1.3.1 -> 1.4.1
This commit is contained in:
commit
e0166b2ad4
@ -1,28 +1,24 @@
|
|||||||
{ lib, buildPythonPackage, fetchFromGitHub, pdfminer, chardet, pytest }:
|
{ lib, buildPythonPackage, fetchFromGitHub, pdfminer, chardet, pytestCheckHook }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pdfx";
|
pname = "pdfx";
|
||||||
version = "1.3.1";
|
version = "1.4.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "metachris";
|
owner = "metachris";
|
||||||
repo = "pdfx";
|
repo = "pdfx";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1183k4h5qdf8y0imbir9ja3yzzsvdmqgbv3bi6dnkgr1wy2xfr0v";
|
sha256 = "sha256-POpP6XwcqwvImrtIiDjpnHoNE0MKapuPjxojo+ocBK0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Remove after https://github.com/metachris/pdfx/pull/28
|
postPatch = ''
|
||||||
prePatch = ''
|
substituteInPlace requirements.txt \
|
||||||
sed -i -e "s|pdfminer2|pdfminer.six|" setup.py
|
--replace "chardet==4.0.0" "chardet"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [ pdfminer chardet ];
|
propagatedBuildInputs = [ pdfminer chardet ];
|
||||||
|
|
||||||
checkInputs = [ pytest ];
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
checkPhase = ''
|
|
||||||
py.test
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
inherit (src.meta) homepage;
|
inherit (src.meta) homepage;
|
||||||
|
Loading…
Reference in New Issue
Block a user