1{ lib, buildPythonPackage, fetchPypi
2, imageio, imageio-ffmpeg }:
3
4buildPythonPackage rec {
5 pname = "handout";
6 version = "1.1.2";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "52daaf1f9a4cb2ceb88c1dedf85d22ef449b9422b424a2534d21f941e57bc915";
11 };
12
13 propagatedBuildInputs = [ imageio imageio-ffmpeg ];
14
15 meta = with lib; {
16 description = "Turn Python scripts into handouts with Markdown and figures";
17 homepage = "https://github.com/danijar/handout";
18 license = licenses.gpl3;
19 maintainers = with maintainers; [ averelld ];
20 };
21}