3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.zeep: 4.0.0 -> 4.1.0

This commit is contained in:
Fabian Affolter 2021-08-18 18:05:29 +02:00
parent 57b6c8c5b2
commit 12558b99db

View file

@ -1,7 +1,6 @@
{ lib { lib
, aiohttp , aiohttp
, aioresponses , aioresponses
, appdirs
, attrs , attrs
, buildPythonPackage , buildPythonPackage
, cached-property , cached-property
@ -12,6 +11,7 @@
, isodate , isodate
, lxml , lxml
, mock , mock
, platformdirs
, pretend , pretend
, pytest-asyncio , pytest-asyncio
, pytest-httpx , pytest-httpx
@ -27,28 +27,28 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "zeep"; pname = "zeep";
version = "4.0.0"; version = "4.1.0";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mvantellingen"; owner = "mvantellingen";
repo = "python-zeep"; repo = "python-zeep";
rev = version; rev = version;
sha256 = "1rwmwk47fxs8dxwv5dr6gbnbiyilznifb47fhbxgzj231w0y82cm"; sha256 = "sha256-fJLr2LJpbNQTl183R56G7sJILfm04R39qpJxLogQLoo=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
appdirs
attrs attrs
cached-property cached-property
defusedxml defusedxml
httpx httpx
isodate isodate
lxml lxml
platformdirs
pytz pytz
requests requests
requests-toolbelt
requests-file requests-file
requests-toolbelt
xmlsec xmlsec
]; ];
@ -62,7 +62,6 @@ buildPythonPackage rec {
pytest-httpx pytest-httpx
pytestCheckHook pytestCheckHook
requests-mock requests-mock
xmlsec
]; ];
preCheck = '' preCheck = ''