jsonschema-cli: 0.38.1 -> 0.40.0

Diff: https://github.com/Stranger6667/jsonschema/compare/rust-v0.38.1...rust-v0.40.0

Without $SSL_CERT_FILE, several new HTTP tests in 0.40.0 will fail.

```
  failures:
    test_http_connect_timeout_option
    test_http_options_ndjson_output
    test_http_options_with_external_ref
    test_http_timeout_option
```
This commit is contained in:
Kenichi Kamiya
2026-01-21 15:33:40 +09:00
parent ce83efa0c1
commit c5976df9fb
+8 -3
View File
@@ -2,21 +2,26 @@
lib,
fetchCrate,
rustPlatform,
cacert,
versionCheckHook,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "jsonschema-cli";
version = "0.38.1";
version = "0.40.0";
src = fetchCrate {
pname = "jsonschema-cli";
inherit (finalAttrs) version;
hash = "sha256-W3pyT5DK8ADkWi7znuTDTq1hjRTOwhg9rSmuGZTX8r0=";
hash = "sha256-giHE1iawz3iahO98C5Wq6QboLX2nTzeK/xhASzzDmAY=";
};
cargoHash = "sha256-C8A+cyNix0Q9OACyyPM3A74jZKNBCGz/622YsZqtY2E=";
cargoHash = "sha256-PhWT0ewOQ1ZUQ8xyCeDTNs96XjFGmk+uzvDSWANDCjo=";
preCheck = ''
export SSL_CERT_FILE=${cacert}/etc/ssl/certs/ca-bundle.crt
'';
nativeInstallCheckInputs = [
versionCheckHook