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