oci-cli: fixup fetch of jmespath-0.10.0

As python3.pkgs.jmespath switched its fetcher in b9472284a2,
this broke due to hash change. Let's be more explicit about the source.
This commit is contained in:
Vladimír Čunát
2026-05-20 09:51:28 +02:00
parent b9fab865d3
commit f1045fa965
+3 -2
View File
@@ -1,6 +1,7 @@
{
lib,
fetchFromGitHub,
fetchPypi,
python3,
installShellFiles,
nix-update-script,
@@ -13,10 +14,10 @@ let
packageOverrides = self: super: {
jmespath = super.jmespath.overridePythonAttrs (oldAttrs: rec {
version = "0.10.0";
src = oldAttrs.src.override {
src = fetchPypi {
pname = "jmespath";
inherit version;
sha256 = "b85d0567b8666149a93172712e68920734333c0ce7e89b78b3e987f71e5ed4f9";
hash = "";
};
doCheck = false;
});