3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #68677 from jonringer/fix-zeep

pythonPackages.zeep: fix pytest5 tests
This commit is contained in:
Robin Gloster 2019-09-13 23:25:28 +02:00 committed by GitHub
commit e4581fb5ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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