1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5
6 setuptools,
7}:
8
9buildPythonPackage rec {
10 pname = "xdxf2html";
11 version = "0.1.0";
12 pyproject = true;
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-u2UaEALzD583+hbgwTItQOdGQ6GIhdVy79C2gfJwzlI=";
17 };
18
19 build-system = [ setuptools ];
20
21 pythonImportsCheck = [ "xdxf2html" ];
22
23 meta = with lib; {
24 description = "Python module for converting XDXF dictionary texts into HTML";
25 homepage = "https://github.com/Crissium/python-xdxf2html";
26 license = licenses.gpl3Only;
27 maintainers = with maintainers; [ vizid ];
28 };
29}