summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-core/default.nix
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-05-20 22:27:19 -0700
committerJonathan Ringer <jonringer117@gmail.com>2021-05-20 22:30:48 -0700
commitcc811c11f7f692da563aaa0f85f948dad4afa30c (patch)
treef95a26f6c9f1011e90dda5cf5632508d5c367773 /pkgs/development/python-modules/azure-core/default.nix
parent788deaad9dbc27b94c0d930b617f659e71ea7987 (diff)
downloadnixpkgs-cc811c11f7f692da563aaa0f85f948dad4afa30c.tar
nixpkgs-cc811c11f7f692da563aaa0f85f948dad4afa30c.tar.gz
nixpkgs-cc811c11f7f692da563aaa0f85f948dad4afa30c.tar.bz2
nixpkgs-cc811c11f7f692da563aaa0f85f948dad4afa30c.tar.lz
nixpkgs-cc811c11f7f692da563aaa0f85f948dad4afa30c.tar.xz
nixpkgs-cc811c11f7f692da563aaa0f85f948dad4afa30c.tar.zst
nixpkgs-cc811c11f7f692da563aaa0f85f948dad4afa30c.zip
python3Packages.azure-core: 1.13.0 -> 1.14.0
Diffstat (limited to 'pkgs/development/python-modules/azure-core/default.nix')
-rw-r--r--pkgs/development/python-modules/azure-core/default.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/azure-core/default.nix b/pkgs/development/python-modules/azure-core/default.nix
index a63f33d7421..e5394a616e8 100644
--- a/pkgs/development/python-modules/azure-core/default.nix
+++ b/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";