1 { lib, python3, fetchFromGitHub, ncurses }:
3 with python3.pkgs; buildPythonApplication rec {
7 src = fetchFromGitHub {
11 sha256 = "0j8d8jizivnfx8lpc4w6sbqj5hq35nfz0vdg7ld80sc5cs7jr3ws";
14 nativeBuildInputs = [ pytest ];
15 buildInputs = [ ncurses ];
16 propagatedBuildInputs = [ pillow ];
18 checkPhase = "py.test";
21 description = "Terminal Mandelbrot fractal viewer";
22 mainProgram = "almonds";
23 homepage = "https://github.com/Tenchi2xh/Almonds";
24 license = licenses.mit;