almonds: init at 2015-12-27
This commit is contained in:
parent
a03b2b99af
commit
8e8a259df4
29
pkgs/applications/science/math/almonds/default.nix
Normal file
29
pkgs/applications/science/math/almonds/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv, buildPythonApplication, fetchFromGitHub, ncurses, pillow, pytest }:
|
||||
|
||||
let
|
||||
version = "1.25b";
|
||||
in
|
||||
|
||||
buildPythonApplication {
|
||||
name = "almonds-${version}";
|
||||
src = fetchFromGitHub {
|
||||
owner = "Tenchi2xh";
|
||||
repo = "Almonds";
|
||||
rev = version;
|
||||
sha256 = "0j8d8jizivnfx8lpc4w6sbqj5hq35nfz0vdg7ld80sc5cs7jr3ws";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pytest ];
|
||||
buildInputs = [ ncurses ];
|
||||
propagatedBuildInputs = [ pillow ];
|
||||
|
||||
checkPhase = "py.test";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Terminal Mandelbrot fractal viewer";
|
||||
homepage = https://github.com/Tenchi2xh/Almonds;
|
||||
# No license has been specified
|
||||
license = licenses.unfree;
|
||||
maintainers = with maintainers; [ infinisil ];
|
||||
};
|
||||
}
|
@ -18981,6 +18981,8 @@ with pkgs;
|
||||
|
||||
### SCIENCE/MATH
|
||||
|
||||
almonds = pythonPackages.callPackage ../applications/science/math/almonds { };
|
||||
|
||||
arpack = callPackage ../development/libraries/science/math/arpack { };
|
||||
|
||||
atlas = callPackage ../development/libraries/science/math/atlas {
|
||||
|
Loading…
Reference in New Issue
Block a user