conan: unbreak by downgrading pyjwt (#121802)
Pin pyjwt to 1.7.1 (the last of the 1.x series) to fix building conan: ERROR: Could not find a version that satisfies the requirement PyJWT<2.0.0,>=1.4.0 (from conan) Ref. upstream issue https://github.com/conan-io/conan/issues/8876.
This commit is contained in:
parent
0d337eb6b7
commit
9ba09d80e1
1 changed files with 8 additions and 0 deletions
|
@ -28,6 +28,14 @@ let newPython = python3.override {
|
|||
sha256 = "18hpzh1am1dqx81fypn57r2wk565fi4g14292qrc5jm1h9dalzld";
|
||||
};
|
||||
});
|
||||
# https://github.com/conan-io/conan/issues/8876
|
||||
pyjwt = super.pyjwt.overridePythonAttrs (oldAttrs: rec {
|
||||
version = "1.7.1";
|
||||
src = oldAttrs.src.override {
|
||||
inherit version;
|
||||
sha256 = "8d59a976fb773f3e6a39c85636357c4f0e242707394cadadd9814f5cbaa20e96";
|
||||
};
|
||||
});
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue