azure-cli: pin cryptography

This commit is contained in:
Jonathan Ringer 2020-08-06 23:37:01 -07:00 committed by Jon
parent 8af72d5530
commit 4efcd73d72

View file

@ -328,6 +328,19 @@ let
'';
});
cryptography = super.cryptography.overridePythonAttrs(oldAttrs: rec {
version = "2.9.2";
src = super.fetchPypi {
inherit (oldAttrs) pname;
inherit version;
sha256 = "0af25w5mkd6vwns3r6ai1w5ip9xp0ms9s261zzssbpadzdr05hx0";
};
# prevent cycle with cryptography-vectors
doCheck = false;
});
knack = super.knack.overridePythonAttrs(oldAttrs: rec {
version = "0.7.1";