lol

Merge pull request #292351 from ViZiD/xdxf2html

python3Packages.xdxf2html: init at 0.1.0

authored by

OTABI Tomoya and committed by
GitHub
f98a3ccf c1c7230b

+32
+30
pkgs/development/python-modules/xdxf2html/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + 5 + , setuptools 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "xdxf2html"; 10 + version = "0.1.0"; 11 + pyproject = true; 12 + 13 + src = fetchPypi { 14 + inherit pname version; 15 + hash = "sha256-u2UaEALzD583+hbgwTItQOdGQ6GIhdVy79C2gfJwzlI="; 16 + }; 17 + 18 + build-system = [ 19 + setuptools 20 + ]; 21 + 22 + pythonImportsCheck = [ "xdxf2html" ]; 23 + 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 + }; 30 + }
+2
pkgs/top-level/python-packages.nix
··· 16693 16693 16694 16694 xxhash = callPackage ../development/python-modules/xxhash { }; 16695 16695 16696 + xdxf2html = callPackage ../development/python-modules/xdxf2html { }; 16697 + 16696 16698 xyzservices = callPackage ../development/python-modules/xyzservices { }; 16697 16699 16698 16700 y-py = callPackage ../development/python-modules/y-py { };