biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / dsl2html / default.nix
blob258f7a389a94d109a9c0705fe2a5938b46c1dfee
2   lib,
3   buildPythonPackage,
4   fetchPypi,
6   setuptools,
7 }:
9 buildPythonPackage rec {
10   pname = "dsl2html";
11   version = "0.1.5";
12   pyproject = true;
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-LUtTMqQuwahIeMm9QvMe6rdHEw5LEjMQdyZFZvf/HRU=";
17   };
19   build-system = [ setuptools ];
21   pythonImportsCheck = [ "dsl" ];
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   };