mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / by-name / al / almonds / package.nix
blob7717458d0dac23fae717d4c7a55600c89a39142c
1 { lib, python3, fetchFromGitHub, ncurses }:
3 with python3.pkgs; buildPythonApplication rec {
4   pname = "almonds";
5   version = "1.25b";
7   src = fetchFromGitHub {
8     owner = "Tenchi2xh";
9     repo = "Almonds";
10     rev = version;
11     sha256 = "0j8d8jizivnfx8lpc4w6sbqj5hq35nfz0vdg7ld80sc5cs7jr3ws";
12   };
14   nativeBuildInputs = [ pytest ];
15   buildInputs = [ ncurses ];
16   propagatedBuildInputs = [ pillow ];
18   checkPhase = "py.test";
20   meta = with lib; {
21     description = "Terminal Mandelbrot fractal viewer";
22     mainProgram = "almonds";
23     homepage = "https://github.com/Tenchi2xh/Almonds";
24     license = licenses.mit;
25     maintainers = [ ];
26   };