blob: fa8fc2af0e199884a8a0cbc9a04f1447e5c2453d (
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 = "dsl2html";
version = "0.2.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-GIJgkUbnU3eRkBgkguAINgMH1YnDSs5I9gIdQWvmVc0=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "dsl" ];
meta = {
description = "Python module for converting DSL dictionary texts into HTML";
homepage = "https://github.com/Crissium/python-dsl";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ vizid ];
};
}
|