Merge pull request #218154 from marsam/update-check-jsonschema
check-jsonschema: 0.18.3 -> 0.21.0
This commit is contained in:
commit
10974f57b5
1 changed files with 11 additions and 3 deletions
|
@ -4,19 +4,21 @@ with python3.pkgs;
|
|||
|
||||
buildPythonApplication rec {
|
||||
pname = "check-jsonschema";
|
||||
version = "0.18.3";
|
||||
version = "0.21.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "python-jsonschema";
|
||||
repo = "check-jsonschema";
|
||||
rev = version;
|
||||
sha256 = "sha256-9Ejcxr/22rJu8JoC7WspLfzF08elz4TaGagDeV0zIXk=";
|
||||
hash = "sha256-7cXnV27LCG1MXDH28UBmUC4sLooH2gKvGYF3YijLB38=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
ruamel-yaml
|
||||
jsonschema
|
||||
identify
|
||||
requests
|
||||
click
|
||||
];
|
||||
|
@ -37,9 +39,15 @@ buildPythonApplication rec {
|
|||
export no_proxy='*';
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [
|
||||
"check_jsonschema"
|
||||
"check_jsonschema.cli"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A jsonschema CLI and pre-commit hook";
|
||||
homepage = "https://github.com/python-jsonschema/check-jsonschema";
|
||||
changelog = "https://github.com/python-jsonschema/check-jsonschema/blob/${version}/CHANGELOG.rst";
|
||||
license = licenses.apsl20;
|
||||
maintainers = with maintainers; [ sudosubin ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue