01ed8ef136
GitOrigin-RevId: 20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8
26 lines
646 B
Nix
26 lines
646 B
Nix
{ lib, buildPythonPackage, fetchPypi, pypdf2 }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pdftools.pdfposter";
|
|
version = "0.8.1";
|
|
format = "setuptools";
|
|
|
|
propagatedBuildInputs = [ pypdf2 ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-yWFtHgVKAWs4dRlSk8t8cB2KBJeBOa0Frh3BLR9txS0=";
|
|
};
|
|
|
|
pythonImportsCheck = [
|
|
"pdftools.pdfposter"
|
|
"pdftools.pdfposter.cmd"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Split large pages of a PDF into smaller ones for poster printing";
|
|
homepage = "https://pdfposter.readthedocs.io";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ wamserma ];
|
|
};
|
|
}
|