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