1{
2 lib,
3 fetchPypi,
4 buildPythonPackage,
5}:
6
7buildPythonPackage rec {
8 pname = "markuppy";
9 version = "1.14";
10 format = "setuptools";
11
12 src = fetchPypi {
13 pname = "MarkupPy";
14 inherit version;
15 hash = "sha256-Gt7iwKVCrzeP6EVI/29rAWjzy39Ca0aWEDiivPqtDV8=";
16 };
17
18 # has no tests
19 doCheck = false;
20
21 pythonImportsCheck = [ "MarkupPy" ];
22
23 meta = with lib; {
24 description = "HTML/XML generator";
25 homepage = "https://github.com/tylerbakke/MarkupPy";
26 license = licenses.mit;
27 maintainers = with maintainers; [ sephi ];
28 };
29}