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