nixpkgs/pkgs/development/tools/check-jsonschema/default.nix
Matthias Beyer ab83105076
check-jsonschema: 0.25.0 -> 0.27.3
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Co-Authored-By: Victor Engmark <victor@engmark.name>
2023-12-20 20:46:23 +01:00

49 lines
1 KiB
Nix

{ lib, fetchFromGitHub, python3 }:
with python3.pkgs;
buildPythonApplication rec {
pname = "check-jsonschema";
version = "0.27.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "python-jsonschema";
repo = "check-jsonschema";
rev = version;
hash = "sha256-WXvhlkU1dRNKhW3sMakd644W56xv8keMjSZL4MrQEc8=";
};
propagatedBuildInputs = [
ruamel-yaml
jsonschema
requests
click
regress
];
nativeCheckInputs = [
pytestCheckHook
pytest-xdist
responses
];
pythonImportsCheck = [
"check_jsonschema"
"check_jsonschema.cli"
];
disabledTests = [
"test_schemaloader_yaml_data"
];
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.asl20;
maintainers = with maintainers; [ sudosubin ];
};
}