2019-03-14 03:13:56 +00:00
|
|
|
{ attrs
|
|
|
|
, buildPythonPackage
|
|
|
|
, defusedxml
|
|
|
|
, fetchPypi
|
|
|
|
, hypothesis
|
|
|
|
, isPy3k
|
|
|
|
, lxml
|
|
|
|
, pillow
|
|
|
|
, pybind11
|
|
|
|
, pytest
|
|
|
|
, pytest-helpers-namespace
|
|
|
|
, pytest-timeout
|
|
|
|
, pytest_xdist
|
|
|
|
, pytestrunner
|
|
|
|
, python-xmp-toolkit
|
|
|
|
, python3
|
|
|
|
, qpdf
|
|
|
|
, setuptools-scm-git-archive
|
|
|
|
, setuptools_scm
|
|
|
|
, stdenv
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pikepdf";
|
2019-08-31 23:14:44 +01:00
|
|
|
version = "1.6.2";
|
2019-03-14 03:13:56 +00:00
|
|
|
disabled = ! isPy3k;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-08-31 23:14:44 +01:00
|
|
|
sha256 = "1x1b55znr0j4fib69l2h0xq0qmbf2nbxwbwd4f7y8r4sqi20239z";
|
2019-03-14 03:13:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
pybind11
|
|
|
|
qpdf
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
setuptools-scm-git-archive
|
|
|
|
setuptools_scm
|
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
attrs
|
|
|
|
hypothesis
|
|
|
|
pillow
|
|
|
|
pytest
|
|
|
|
pytest-helpers-namespace
|
|
|
|
pytest-timeout
|
|
|
|
pytest_xdist
|
|
|
|
pytestrunner
|
|
|
|
python-xmp-toolkit
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ defusedxml lxml ];
|
|
|
|
|
|
|
|
postPatch = ''
|
2019-08-31 23:14:44 +01:00
|
|
|
sed -i \
|
|
|
|
-e 's/^pytest .*/pytest/g' \
|
|
|
|
-e 's/^attrs .*/attrs/g' \
|
|
|
|
-e 's/^hypothesis .*/hypothesis/g' \
|
|
|
|
requirements/test.txt
|
2019-03-14 03:13:56 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
HOME=$TMPDIR
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "https://github.com/pikepdf/pikepdf";
|
|
|
|
description = "Read and write PDFs with Python, powered by qpdf";
|
|
|
|
license = licenses.mpl20;
|
|
|
|
maintainers = [ maintainers.kiwi ];
|
|
|
|
};
|
|
|
|
}
|