depot/third_party/nixpkgs/pkgs/tools/misc/noteshrink/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

25 lines
679 B
Nix

{ lib, fetchFromGitHub, python3, imagemagick }:
with python3.pkgs;
buildPythonApplication rec {
pname = "noteshrink";
version = "0.1.1";
src = fetchFromGitHub {
owner = "mzucker";
repo = "noteshrink";
rev = version;
sha256 = "0xhrvg3d8ffnbbizsrfppcd2y98znvkgxjdmvbvin458m2rwccka";
};
propagatedBuildInputs = [ numpy scipy imagemagick pillow ];
meta = with lib; {
description = "Convert scans of handwritten notes to beautiful, compact PDFs";
homepage = "https://mzucker.github.io/2016/09/20/noteshrink.html";
license = licenses.mit;
maintainers = with maintainers; [ rnhmjoj ];
mainProgram = "noteshrink";
};
}