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