Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 21 lines 563 B view raw
1{ stdenv, buildPythonPackage, fetchPypi 2, imageio, imageio-ffmpeg }: 3 4buildPythonPackage rec { 5 pname = "handout"; 6 version = "1.0.0"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "16y1wqx8j4kf6fa94x22njrkdfb2cfi0dvc7a4q2qsa8m3ri0b43"; 11 }; 12 13 propagatedBuildInputs = [ imageio imageio-ffmpeg ]; 14 15 meta = with stdenv.lib; { 16 description = "Turn Python scripts into handouts with Markdown and figures"; 17 homepage = "https://github.com/danijar/handout"; 18 license = licenses.gpl3; 19 maintainers = with maintainers; [ averelld ]; 20 }; 21}