python312Packages.json2html: init at 1.3.0

Release: https://github.com/softvar/json2html/releases/tag/v1.3.0
This commit is contained in:
tahanonu
2024-07-21 14:40:16 +01:00
parent fcef8d5b85
commit abe3bede12
2 changed files with 37 additions and 0 deletions
@@ -0,0 +1,35 @@
{
buildPythonPackage,
fetchFromGitHub,
lib,
python3,
setuptools,
}:
buildPythonPackage rec {
pname = "json2html";
version = "1.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "softvar";
repo = "json2html";
rev = "v${version}";
hash = "sha256-Y+mwJ0p4Q2TKMU8qQvuvo08RiMdsReO7psgXaiW9ntk=";
};
build-system = [ setuptools ];
# no proper test available
doCheck = false;
pythonImportsCheck = [ "json2html" ];
meta = {
description = "Python module for converting complex JSON to HTML Table representation";
homepage = "https://github.com/softvar/json2html";
changelog = "https://github.com/softvar/json2html/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tochiaha ];
};
}
+2
View File
@@ -6216,6 +6216,8 @@ self: super: with self; {
jsmin = callPackage ../development/python-modules/jsmin { };
json2html = callPackage ../development/python-modules/json2html { };
json5 = callPackage ../development/python-modules/json5 { };
jsonargparse = callPackage ../development/python-modules/jsonargparse { };