nixpkgs/pkgs/by-name/al/almonds/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
651 B
Nix
Raw Normal View History

{ lib, python3, fetchFromGitHub, ncurses }:
2018-01-22 22:40:06 +00:00
2018-08-03 16:04:46 +00:00
with python3.pkgs; buildPythonApplication rec {
pname = "almonds";
2018-01-22 22:40:06 +00:00
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; {
2018-01-22 22:40:06 +00:00
description = "Terminal Mandelbrot fractal viewer";
mainProgram = "almonds";
homepage = "https://github.com/Tenchi2xh/Almonds";
2018-09-09 00:04:34 +00:00
license = licenses.mit;
maintainers = [ ];
2018-01-22 22:40:06 +00:00
};
}