02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
38 lines
704 B
Nix
38 lines
704 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, glibcLocales
|
|
, python
|
|
, tqdm
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pypdf3";
|
|
version = "1.0.6";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
pname = "PyPDF3";
|
|
inherit version;
|
|
hash = "sha256-yUbzJzQZ43JY415yJz9JkEqxVyPYenYcERXvmXmfjF8=";
|
|
};
|
|
|
|
LC_ALL = "en_US.UTF-8";
|
|
buildInputs = [ glibcLocales ];
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} -m unittest tests/*.py
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
tqdm
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A Pure-Python library built as a PDF toolkit";
|
|
homepage = "https://github.com/sfneal/PyPDF3";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ambroisie ];
|
|
};
|
|
}
|