Merge pull request #204247 from r-ryantm/auto-update/json-schema-for-humans

json-schema-for-humans: 0.42.1 -> 0.44
This commit is contained in:
Fabian Affolter 2022-12-06 22:29:44 +01:00 committed by GitHub
commit 693d42397b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@
buildPythonPackage rec {
pname = "json-schema-for-humans";
version = "0.42.1";
version = "0.44";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -26,8 +26,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "coveooss";
repo = pname;
rev = "v${version}";
hash = "sha256-WVLIx85ivHz5b6C1AfgMAApngeFCuWwWhaBWNcfOvXA=";
rev = "refs/tags/v${version}";
hash = "sha256-LsZPf5PVXPSyHNgfBdjH4hG4OFIdSprO5uj3saPDqzo=";
};
postPatch = ''
@ -70,6 +70,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Quickly generate HTML documentation from a JSON schema";
homepage = "https://github.com/coveooss/json-schema-for-humans";
changelog = "https://github.com/coveooss/json-schema-for-humans/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ astro ];
};