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:
@@ -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;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user