azure-cli: fix deps

This commit is contained in:
Jonathan Ringer 2022-01-16 22:51:36 -08:00 committed by Martin Weinelt
parent 1071f94fde
commit 6568807032
2 changed files with 14 additions and 1 deletions

View file

@ -29,6 +29,7 @@ py.pkgs.toPythonApplication (py.pkgs.buildAzureCliPackage {
--replace "javaproperties~=0.5.1" "javaproperties" \
--replace "pytz==2019.1" "pytz" \
--replace "scp~=0.13.2" "scp" \
--replace "PyNaCl~=1.4.0" "PyNaCl" \
--replace "jsondiff~=1.2.0" "jsondiff~=1.2" \
--replace "antlr4-python3-runtime~=4.7.2" "antlr4-python3-runtime~=4.7" \
--replace "mock~=4.0" "mock"
@ -141,6 +142,7 @@ py.pkgs.toPythonApplication (py.pkgs.buildAzureCliPackage {
pydocumentdb
PyGithub
pygments
pynacl
pyopenssl
pytz
pyyaml

View file

@ -466,7 +466,8 @@ let
inherit version;
sha256 = "sha256-109FuBMXRU2W6YL9HFDm+1yZrCIjcorqh2RDOjn1ZvE=";
};
# sdist lacks tests
# sdist doesn't provide tests
doCheck = false;
});
@ -502,6 +503,16 @@ let
};
});
argcomplete = super.argcomplete.overridePythonAttrs(oldAttrs: rec {
version = "1.8.0";
src = super.fetchPypi {
inherit (oldAttrs) pname;
inherit version;
sha256 = "sha256-SreailmO/AgRBGv3dnj4VkMnbokAzWT5xPEPEQ4QEb0=";
};
});
sshtunnel = super.sshtunnel.overridePythonAttrs(oldAttrs: rec {
name = "sshtunnel-${version}";
version = "0.1.5";