json-schema-for-humans: init at 0.27.0

This commit is contained in:
Astro 2020-12-31 20:16:34 +01:00
parent dfd80244d2
commit 50ca640f44
3 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,43 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, fetchurl
, pbr, click, dataclasses-json, htmlmin, jinja2, markdown2, pygments, pytz, pyyaml, requests, pytestCheckHook, beautifulsoup4, tox
}:
buildPythonPackage rec {
pname = "json-schema-for-humans";
version = "0.27.0";
src = fetchFromGitHub {
owner = "coveooss";
repo = pname;
rev = "v${version}";
sha256 = "1r40i192z6aasil5vsgcgp5yvx392dhhqnfc2qxbxvpja6l3p6p2";
};
patches = [ (fetchurl {
url = "https://github.com/coveooss/json-schema-for-humans/commit/1fe2e2391da5a796204fd1889e4a11a53f83f7c9.patch";
sha256 = "0kpydpddlg0rib9snl8albhbrrs6d3ds292gpgpg7bdpqrwamdib";
}) (fetchurl {
url = "https://github.com/astro/json-schema-for-humans/commit/9bcc9b461102062dff214ca1ec2375b8aea53711.patch";
sha256 = "142a07v8bn1j20b7177yb60f4944kbx4cdqqq2nz6xkxmamw704d";
}) ];
nativeBuildInputs = [ pbr ];
propagatedBuildInputs = [
click dataclasses-json htmlmin jinja2 markdown2
pygments pytz pyyaml requests
];
preBuild = ''
export PBR_VERSION=0.0.1
'';
checkInputs = [ pytestCheckHook beautifulsoup4 ];
pytestFlagsArray = [ "--ignore tests/generate_test.py" ];
meta = with stdenv.lib; {
description = "Quickly generate HTML documentation from a JSON schema";
homepage = "https://github.com/coveooss/json-schema-for-humans";
license = licenses.asl20;
maintainers = with maintainers; [ astro ];
};
}

View File

@ -5076,6 +5076,8 @@ in
jsduck = callPackage ../development/tools/jsduck { };
json-schema-for-humans = with python3Packages; toPythonApplication json-schema-for-humans;
jtc = callPackage ../development/tools/jtc { };
jumpapp = callPackage ../tools/X11/jumpapp {};

View File

@ -3208,6 +3208,8 @@ in {
json-merge-patch = callPackage ../development/python-modules/json-merge-patch { };
json-schema-for-humans = callPackage ../development/python-modules/json-schema-for-humans { };
jsonnet = buildPythonPackage { inherit (pkgs.jsonnet) name src; };
jsonpatch = callPackage ../development/python-modules/jsonpatch { };