forked from mirrors/nixpkgs
Merge pull request #68677 from jonringer/fix-zeep
pythonPackages.zeep: fix pytest5 tests
This commit is contained in:
commit
e4581fb5ab
|
@ -1,5 +1,6 @@
|
|||
{ fetchPypi
|
||||
, lib
|
||||
, fetchpatch
|
||||
, buildPythonPackage
|
||||
, isPy3k
|
||||
, appdirs
|
||||
|
@ -33,6 +34,13 @@ buildPythonPackage rec {
|
|||
sha256 = "0e98669cfeb60756231ae185498f9ae21b30b2681786b8de58ed34c3b93e41dd";
|
||||
};
|
||||
|
||||
patches = [
|
||||
( fetchpatch {
|
||||
url = "https://github.com/mvantellingen/python-zeep/pull/1006/commits/ba7edd6bf2b31023b31e8f17c161e1d6d5af3d29.patch";
|
||||
sha256 = "1j0jd5hmh457im9sbawaqf6pnfy36fhr9wqdim8wk5da9ixr0ajs";
|
||||
})
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
appdirs
|
||||
attrs
|
||||
|
|
Loading…
Reference in a new issue