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