python3Packages.azure-core: 1.13.0 -> 1.14.0

wip/little-gl
Jonathan Ringer 3 years ago
parent 788deaad9d
commit cc811c11f7
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0
  1. 13
      pkgs/development/python-modules/azure-core/default.nix

@ -14,14 +14,14 @@
}:
buildPythonPackage rec {
version = "1.13.0";
version = "1.14.0";
pname = "azure-core";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "624b46db407dbed9e03134ab65214efab5b5315949a1fbd6cd592c46fb272588";
sha256 = "f32bb64aabe61f496255c16dd6c555a027da628109460bf27311cee0caf78f96";
};
propagatedBuildInputs = [
@ -45,8 +45,13 @@ buildPythonPackage rec {
pytestFlagsArray = [ "tests/" ];
# disable tests which touch network
disabledTests = [ "aiohttp" "multipart_send" "response" "request" "timeout" ];
# requires testing modules which aren't published, and likely to create cyclic dependencies
disabledTestPaths = [ "tests/test_connection_string_parsing.py" ];
disabledTestPaths = [
# requires testing modules which aren't published, and likely to create cyclic dependencies
"tests/test_connection_string_parsing.py"
# wants network
"tests/async_tests/test_streaming_async.py"
"tests/test_streaming.py"
];
meta = with lib; {
description = "Microsoft Azure Core Library for Python";

Loading…
Cancel
Save