Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / xdxf2html / default.nix
blob496627c3724f0156b61e171a1f451e5adaa7213b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
5 , setuptools
6 }:
8 buildPythonPackage rec {
9   pname = "xdxf2html";
10   version = "0.1.0";
11   pyproject = true;
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-u2UaEALzD583+hbgwTItQOdGQ6GIhdVy79C2gfJwzlI=";
16   };
18   build-system = [
19     setuptools
20   ];
22   pythonImportsCheck = [ "xdxf2html" ];
24   meta = with lib; {
25     description = "Python module for converting XDXF dictionary texts into HTML";
26     homepage = "https://github.com/Crissium/python-xdxf2html";
27     license = licenses.gpl3Only;
28     maintainers = with maintainers; [ vizid ];
29   };