summary refs log tree commit diff
path: root/pkgs/development/python-modules/handout
diff options
context:
space:
mode:
authoraverelld <averelld@users.noreply.github.com>2019-08-31 06:19:16 +0200
committerSamuel Leathers <disasm@gmail.com>2019-08-31 00:19:16 -0400
commit5a581c420c33f1188484f9d45d1cba6e97ae1d45 (patch)
treefc5e5d5780919d5733b58d6b8ea4168ea4a2c0b0 /pkgs/development/python-modules/handout
parent60216e84720c68745b0665a4747a6f9695563984 (diff)
downloadnixpkgs-5a581c420c33f1188484f9d45d1cba6e97ae1d45.tar
nixpkgs-5a581c420c33f1188484f9d45d1cba6e97ae1d45.tar.gz
nixpkgs-5a581c420c33f1188484f9d45d1cba6e97ae1d45.tar.bz2
nixpkgs-5a581c420c33f1188484f9d45d1cba6e97ae1d45.tar.lz
nixpkgs-5a581c420c33f1188484f9d45d1cba6e97ae1d45.tar.xz
nixpkgs-5a581c420c33f1188484f9d45d1cba6e97ae1d45.tar.zst
nixpkgs-5a581c420c33f1188484f9d45d1cba6e97ae1d45.zip
python.pkgs.handout: init at 1.0.0 (#66263)
Diffstat (limited to 'pkgs/development/python-modules/handout')
-rw-r--r--pkgs/development/python-modules/handout/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/handout/default.nix b/pkgs/development/python-modules/handout/default.nix
new file mode 100644
index 00000000000..9a398080609
--- /dev/null
+++ b/pkgs/development/python-modules/handout/default.nix
@@ -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 ];
+  };
+}