depot/third_party/nixpkgs/pkgs/tools/misc/noteshrink/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

24 lines
657 B
Nix

{ stdenv, 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 stdenv.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 ];
};
}