nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.zeep: apply patch to fix pytest-httpx testcase

+9
+9
pkgs/development/python-modules/zeep/default.nix
··· 6 6 , cached-property 7 7 , defusedxml 8 8 , fetchFromGitHub 9 + , fetchpatch 9 10 , freezegun 10 11 , httpx 11 12 , isodate ··· 38 37 rev = version; 39 38 sha256 = "sha256-fJLr2LJpbNQTl183R56G7sJILfm04R39qpJxLogQLoo="; 40 39 }; 40 + 41 + patches = [ 42 + (fetchpatch { 43 + # fixes pytest_httpx test case; https://github.com/mvantellingen/python-zeep/pull/1293 44 + url = "https://github.com/mvantellingen/python-zeep/commit/2907848185adcb4e6d8c093db6c617c64cb8c8bf.patch"; 45 + hash = "sha256-hpksgMfrBLvYtI1QIs1aHBtFq7C1PWpnAj8BW5ak1/4="; 46 + }) 47 + ]; 41 48 42 49 propagatedBuildInputs = [ 43 50 attrs