python313Packages.publicsuffixlist: 1.0.2.20250122 -> 1.0.2.20250124 (#376319)
[NixPkgs.git] / pkgs / development / python-modules / handout / default.nix
blob975e3003ba59fd50e2a96cc17aadee32684486b7
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   imageio,
6   imageio-ffmpeg,
7 }:
9 buildPythonPackage rec {
10   pname = "handout";
11   version = "1.1.2";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "52daaf1f9a4cb2ceb88c1dedf85d22ef449b9422b424a2534d21f941e57bc915";
17   };
19   propagatedBuildInputs = [
20     imageio
21     imageio-ffmpeg
22   ];
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   };