mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 14:10:33 +03:00
python3Packages.zeep: disable outdated tests
This commit is contained in:
parent
7e22885876
commit
cb398669d4
1 changed files with 8 additions and 1 deletions
|
@ -28,6 +28,7 @@
|
|||
buildPythonPackage rec {
|
||||
pname = "zeep";
|
||||
version = "4.1.0";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
|
@ -71,9 +72,15 @@ buildPythonPackage rec {
|
|||
disabledTests = [
|
||||
# lxml.etree.XMLSyntaxError: Extra content at the end of the document, line 2, column 64
|
||||
"test_mime_content_serialize_text_xml"
|
||||
# Tests are outdated
|
||||
"test_load"
|
||||
"test_load_cache"
|
||||
"test_post"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "zeep" ];
|
||||
pythonImportsCheck = [
|
||||
"zeep"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python SOAP client";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue