Merge pull request #285109 from LeSuisse/uampq-1.6.8
python3Packages.uamqp: 1.6.5 -> 1.6.8
This commit is contained in:
commit
1634f7bea6
1 changed files with 2 additions and 10 deletions
|
@ -2,7 +2,6 @@
|
|||
, stdenv
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, cython
|
||||
, certifi
|
||||
, CFNetwork
|
||||
|
@ -17,26 +16,19 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "uamqp";
|
||||
version = "1.6.5";
|
||||
version = "1.6.8";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Azure";
|
||||
repo = "azure-uamqp-python";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-q8FxM4PBXLD5q68nrUJ+TGkui1yQJ3HHNF7jn+e+HkA=";
|
||||
hash = "sha256-L4E7nnsVZ/VrOM0t4KtztU9ALmtGfi1vDzUi0ogtZOc=";
|
||||
};
|
||||
|
||||
patches = lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [
|
||||
./darwin-azure-c-shared-utility-corefoundation.patch
|
||||
] ++ [
|
||||
(fetchpatch {
|
||||
name = "CVE-2024-21646.patch";
|
||||
url = "https://github.com/Azure/azure-uamqp-c/commit/12ddb3a31a5a97f55b06fa5d74c59a1d84ad78fe.patch";
|
||||
stripLen = 1;
|
||||
extraPrefix = "src/vendor/azure-uamqp-c/";
|
||||
hash = "sha256-9o3TNKFeJvZRZeS6qo2Zl+JVFrrqAGYWDQbusz4Ou+g=";
|
||||
})
|
||||
# Fix incompatible function pointer conversion error with clang 16.
|
||||
./clang-fix-incompatible-function-pointer-conversion.patch
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue