qsv: 0.131.1 -> 0.138.0

This commit is contained in:
Noa Aarts 2024-11-16 16:30:13 +01:00
parent 6e526675bf
commit 479610e789
No known key found for this signature in database
GPG Key ID: 1850932741EFF672
2 changed files with 1895 additions and 1397 deletions

File diff suppressed because it is too large Load Diff

View File

@ -12,7 +12,7 @@
let
pname = "qsv";
version = "0.131.1";
version = "0.138.0";
in
rustPlatform.buildRustPackage {
inherit pname version;
@ -21,17 +21,21 @@ rustPlatform.buildRustPackage {
owner = "jqnatividad";
repo = "qsv";
rev = version;
hash = "sha256-erXMDZBkOPnZdhhjnUTiS0eCuFo1v5sNhLn8o7QN/5g=";
hash = "sha256-27oSk8fnTvl1zJ8xYkZHkWVTq+AVDn4Zi1s56T49T1Q=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"calamine-0.25.0" = "sha256-LFQahQ+SfGWhp5Kfs7AJCj4zyxWiz099pwVuQucCF00=";
"calamine-0.26.1" = "sha256-3WLXR6ZQoAi6/HtfEouCg9mR5E8iAt8Qzy3fZIrZbKA=";
"csv-1.3.0" = "sha256-QP+N76BTvoHyWOezl+ICwOOqEIfoJBt6PBouxZ6EZks=";
"csvlens-0.10.1" = "sha256-w1nRXz1g4MHKbp3GQ9osZGi4bTDzTdQjfKevl1/4DHA=";
"dynfmt-0.1.5" = "sha256-/SrNOOQJW3XFZOPL/mzdOBppVCaJNNyGBuJumQGx6sA=";
"grex-1.4.5" = "sha256-4Tr5L87HuiUW8tJdqr4oT1yQXviU7XtDrKY7iYNcwbo=";
"grex-1.4.5" = "sha256-g8yPcnDV7hu/K8Ib8j8n+Qz9O7G4zdbMnQopBBn4mr0=";
"local-encoding-0.2.0" = "sha256-ThXYKr3u/n2kvINcyobB2Ayex2sNbJEOyyjZH993Z4U=";
"polars-0.41.3" = "sha256-8xkcJgfKo7BzeBnR6XVdbcH9ZY9Kh4dcGFMmyA5LuQg=";
"polars-0.44.2" = "sha256-MqQoHLluWWkWFOK4+Njq/NnYm30XGze9S9cJ7ysPLOw=";
"publicsuffix-2.2.3" = "sha256-CV7ey5v1Lma+7q7dL4UfwSy7GjtK/OZvmrbyexFOfBY=";
"strum-0.26.3" = "sha256-R3bPqTwxyts7uYSas/3Ij39/m64DH0A++DMIdYqmSqA=";
};
};
@ -75,27 +79,40 @@ rustPlatform.buildRustPackage {
"geocode"
];
checkFlags = [
# Skip tests that require network access.
"--skip test_fetch"
"--skip test_geocode"
"--skip cmd::validate::test_load_json_via_url"
"--skip test_describegpt::describegpt_invalid_api_key"
"--skip test_sample::sample_seed_url"
"--skip test_snappy::snappy_decompress_url"
"--skip test_sniff::sniff_justmime_remote"
"--skip test_sniff::sniff_url_notcsv"
"--skip test_sniff::sniff_url_snappy"
"--skip test_sniff::sniff_url_snappy_noinfer"
"--skip test_validate::validate_adur_public_toilets_dataset_with_json_schema_url"
# Skip test that uses sh.
"--skip test_foreach::foreach_multiple_commands_with_shell_script"
# Skip features that aren't enabled.
"--skip test_luau"
# Skip tests that return the wrong datetime in CI.
"--skip test_stats::stats_cache_negative_threshold"
"--skip test_stats::stats_cache_negative_threshold_five"
];
checkFlags =
[
# Skip tests that require network access.
"--skip test_fetch"
"--skip test_geocode"
"--skip cmd::validate::test_load_json_via_url"
"--skip cmd::validate::test_dyn_enum_validator"
"--skip cmd::validate::test_validate_currency_email_dynamicenum_validator"
"--skip test_describegpt::describegpt_invalid_api_key"
"--skip test_sample::sample_seed_url"
"--skip test_snappy::snappy_decompress_url"
"--skip test_sniff::sniff_justmime_remote"
"--skip test_sniff::sniff_url_notcsv"
"--skip test_sniff::sniff_url_snappy"
"--skip test_sniff::sniff_url_snappy_noinfer"
"--skip test_validate::validate_adur_public_toilets_dataset_with_json_schema_url"
"--skip test_schema::generate_schema_with_const_and_enum_constraints"
"--skip test_schema::generate_schema_with_defaults_and_validate_trim_with_no_errors"
"--skip test_schema::generate_schema_with_optional_flags_notrim_and_validate_with_errors"
"--skip test_schema::generate_schema_with_optional_flags_trim_and_validate_with_errors"
"--skip test_validate::validate_adur_public_toilets_dataset_with_json_schema"
"--skip test_validate::validate_adur_public_toilets_dataset_with_json_schema_valid_output"
# Skip test that uses sh.
"--skip test_foreach::foreach_multiple_commands_with_shell_script"
# Skip features that aren't enabled.
"--skip test_luau"
# Skip tests that return the wrong datetime in CI.
"--skip test_stats::stats_cache_negative_threshold"
"--skip test_stats::stats_cache_negative_threshold_five"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# uses X11 based clipboard library
"--skip test_clipboard::clipboard_success"
];
env = {
ZSTD_SYS_USE_PKG_CONFIG = true;