Concatenate multiple pdf pages using pymupdf I made this to print out lecture notes for my open book exam disclaimer) Gemini wrote this for me
Created
December 15, 2025 10:05
-
-
Save HelloWorld017/c61845dccb218ca1ddb9f82d2e97b687 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "nodes": { | |
| "flake-utils": { | |
| "inputs": { | |
| "systems": [ | |
| "systems" | |
| ] | |
| }, | |
| "locked": { | |
| "lastModified": 1731533236, | |
| "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", | |
| "owner": "numtide", | |
| "repo": "flake-utils", | |
| "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", | |
| "type": "github" | |
| }, | |
| "original": { | |
| "owner": "numtide", | |
| "repo": "flake-utils", | |
| "type": "github" | |
| } | |
| }, | |
| "nixpkgs": { | |
| "locked": { | |
| "lastModified": 1758198701, | |
| "narHash": "sha256-7To75JlpekfUmdkUZewnT6MoBANS0XVypW6kjUOXQwc=", | |
| "owner": "nixos", | |
| "repo": "nixpkgs", | |
| "rev": "0147c2f1d54b30b5dd6d4a8c8542e8d7edf93b5d", | |
| "type": "github" | |
| }, | |
| "original": { | |
| "owner": "nixos", | |
| "ref": "nixos-unstable", | |
| "repo": "nixpkgs", | |
| "type": "github" | |
| } | |
| }, | |
| "root": { | |
| "inputs": { | |
| "flake-utils": "flake-utils", | |
| "nixpkgs": "nixpkgs", | |
| "systems": "systems" | |
| } | |
| }, | |
| "systems": { | |
| "locked": { | |
| "lastModified": 1689347949, | |
| "narHash": "sha256-12tWmuL2zgBgZkdoB6qXZsgJEH9LR3oUgpaQq2RbI80=", | |
| "owner": "nix-systems", | |
| "repo": "default-linux", | |
| "rev": "31732fcf5e8fea42e59c2488ad31a0e651500f68", | |
| "type": "github" | |
| }, | |
| "original": { | |
| "owner": "nix-systems", | |
| "repo": "default-linux", | |
| "type": "github" | |
| } | |
| } | |
| }, | |
| "root": "root", | |
| "version": 7 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| inputs = { | |
| nixpkgs = { | |
| url = "github:nixos/nixpkgs/nixos-unstable"; | |
| }; | |
| flake-utils = { | |
| url = "github:numtide/flake-utils"; | |
| inputs.systems.follows = "systems"; | |
| }; | |
| systems = { | |
| url = "github:nix-systems/default-linux"; | |
| }; | |
| }; | |
| outputs = { nixpkgs, flake-utils, ... }: | |
| flake-utils.lib.eachDefaultSystem (system: let | |
| pkgs = nixpkgs.legacyPackages.${system}; | |
| in { | |
| devShells.default = pkgs.mkShell { | |
| packages = with pkgs; [ | |
| (python3.withPackages (ps: with ps; [ | |
| jupyter | |
| jupyterlab | |
| # pypdf | |
| # pypdfium2 | |
| pymupdf | |
| ])) | |
| ]; | |
| }; | |
| }); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment