nixpkgs/pkgs/applications/science/math/almonds/default.nix
2021-01-25 18:31:47 +01:00

27 lines
650 B
Nix

{ lib, python3, fetchFromGitHub, ncurses }:
with python3.pkgs; buildPythonApplication rec {
pname = "almonds";
version = "1.25b";
src = fetchFromGitHub {
owner = "Tenchi2xh";
repo = "Almonds";
rev = version;
sha256 = "0j8d8jizivnfx8lpc4w6sbqj5hq35nfz0vdg7ld80sc5cs7jr3ws";
};
nativeBuildInputs = [ pytest ];
buildInputs = [ ncurses ];
propagatedBuildInputs = [ pillow ];
checkPhase = "py.test";
meta = with lib; {
description = "Terminal Mandelbrot fractal viewer";
homepage = "https://github.com/Tenchi2xh/Almonds";
license = licenses.mit;
maintainers = with maintainers; [ infinisil ];
};
}