anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / xdxf2html / default.nix
blob4c31e36ff1288048ffb5a028a318f634f4a29513
2   lib,
3   buildPythonPackage,
4   fetchPypi,
6   setuptools,
7 }:
9 buildPythonPackage rec {
10   pname = "xdxf2html";
11   version = "0.1.0";
12   pyproject = true;
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-u2UaEALzD583+hbgwTItQOdGQ6GIhdVy79C2gfJwzlI=";
17   };
19   build-system = [ setuptools ];
21   pythonImportsCheck = [ "xdxf2html" ];
23   meta = with lib; {
24     description = "Python module for converting XDXF dictionary texts into HTML";
25     homepage = "https://github.com/Crissium/python-xdxf2html";
26     license = licenses.gpl3Only;
27     maintainers = with maintainers; [ vizid ];
28   };