Merge #173179: python*Packages.azure-core: 1.23.1 -> 1.24.0

... and fix tests; merge into staging-next
main
Vladimír Čunát 2 years ago
commit fc13119566
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
  1. 16
      pkgs/development/python-modules/azure-core/default.nix

@ -1,4 +1,4 @@
{ lib, stdenv, buildPythonPackage, fetchPypi, isPy27 { lib, stdenv, buildPythonPackage, fetchpatch, fetchPypi, isPy27
, aiodns , aiodns
, aiohttp , aiohttp
, flask , flask
@ -15,16 +15,26 @@
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "1.23.1"; version = "1.24.0";
pname = "azure-core"; pname = "azure-core";
disabled = isPy27; disabled = isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "zip"; extension = "zip";
sha256 = "sha256-KKAd+68KaBLE4qgtFkLqMJVqlznyW8d8myO5H06mjw8="; sha256 = "sha256-NFsbBB+q19AgWyDVaX8dDfNEMC56qoUBkFWA/4e9C+U=";
}; };
patches = [
# FIXME: fixes tests with new versions of flask/werkzeug
# upstream PR: https://github.com/Azure/azure-sdk-for-python/pull/24450
(fetchpatch {
url = "https://github.com/Azure/azure-sdk-for-python/commit/fb20b0b985f614bb7bcd84f3f5f6f3105de25fd9.patch";
stripLen = 3;
sha256 = "sha256-Gt5T/UkQT1yml8bqYbeUpimfOPlmzpN1KKKUnbU9xJw=";
})
];
propagatedBuildInputs = [ propagatedBuildInputs = [
requests requests
six six

Loading…
Cancel
Save