python.pkgs.handout: init at 1.0.0 (#66263)

This commit is contained in:
averelld 2019-08-31 06:19:16 +02:00 committed by Samuel Leathers
parent 60216e8472
commit 5a581c420c
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,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 ];
};
}

View File

@ -645,6 +645,8 @@ in {
habanero = callPackage ../development/python-modules/habanero { };
handout = callPackage ../development/python-modules/handout { };
helper = callPackage ../development/python-modules/helper { };
histbook = callPackage ../development/python-modules/histbook { };