blob: 817d60b33811c470a896f62f0461c9e9cced3be8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
ziafont,
pytestCheckHook,
nbval,
latex2mathml,
writableTmpDirAsHomeHook,
fetchurl,
}:
buildPythonPackage rec {
pname = "ziamath";
version = "0.12";
pyproject = true;
src = fetchFromGitHub {
owner = "cdelker";
repo = "ziamath";
tag = version;
hash = "sha256-ShR9O170Q26l6XHSe2CO4bEuQm4JNOxiPZ2kbKDLNEU=";
};
build-system = [ setuptools ];
dependencies = [ ziafont ];
nativeCheckInputs = [
pytestCheckHook
nbval
latex2mathml
writableTmpDirAsHomeHook
];
preCheck =
let
# The test notebooks try to download font files, unless they already exist in the test directory,
# so we prepare them in advance.
checkFonts = lib.map fetchurl (import ./checkfonts.nix);
copyFontCmd = font: "cp ${font} test/${lib.last (lib.splitString "/" font.url)}\n";
in
lib.concatMapStrings copyFontCmd checkFonts;
pytestFlags = [ "--nbval-lax" ];
pythonImportsCheck = [ "ziamath" ];
meta = {
description = "Render MathML and LaTeX Math to SVG without Latex installation";
homepage = "https://ziamath.readthedocs.io/en/latest/";
changelog = "https://ziamath.readthedocs.io/en/latest/changes.html";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.sfrijters ];
};
}
|