02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
20 lines
530 B
Nix
20 lines
530 B
Nix
{ lib, buildPythonPackage, fetchPypi, pypdf2 }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pdftools.pdfposter";
|
|
version = "0.8";
|
|
|
|
propagatedBuildInputs = [ pypdf2 ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-SYEn54kpO6KQ8ywpgu0+3uL+Ilr1hsfSornWrs2EBqQ=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Split large pages of a PDF into smaller ones for poster printing";
|
|
homepage = "https://pdfposter.readthedocs.io";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ wamserma ];
|
|
};
|
|
}
|