nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

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

json-schema-for-humans: 0.42.1 -> 0.44

authored by

Fabian Affolter and committed by
GitHub
693d4239 cfdf35a6

+4 -3
+4 -3
pkgs/development/python-modules/json-schema-for-humans/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "json-schema-for-humans"; 21 - version = "0.42.1"; 21 + version = "0.44"; 22 22 format = "pyproject"; 23 23 24 24 disabled = pythonOlder "3.7"; ··· 26 26 src = fetchFromGitHub { 27 27 owner = "coveooss"; 28 28 repo = pname; 29 - rev = "v${version}"; 30 - hash = "sha256-WVLIx85ivHz5b6C1AfgMAApngeFCuWwWhaBWNcfOvXA="; 29 + rev = "refs/tags/v${version}"; 30 + hash = "sha256-LsZPf5PVXPSyHNgfBdjH4hG4OFIdSprO5uj3saPDqzo="; 31 31 }; 32 32 33 33 postPatch = '' ··· 70 70 meta = with lib; { 71 71 description = "Quickly generate HTML documentation from a JSON schema"; 72 72 homepage = "https://github.com/coveooss/json-schema-for-humans"; 73 + changelog = "https://github.com/coveooss/json-schema-for-humans/releases/tag/v${version}"; 73 74 license = licenses.asl20; 74 75 maintainers = with maintainers; [ astro ]; 75 76 };