blob: 3d58775b6166165f144016dd160f7f235902b4a3 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "xdxf2html";
version = "0.2.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-ux622mch+sc6LzaYxbt35JGRL5mrnn/Tk7nrO5Z03xU=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "xdxf2html" ];
meta = {
description = "Python module for converting XDXF dictionary texts into HTML";
homepage = "https://github.com/Crissium/python-xdxf2html";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ vizid ];
};
}
|