nixpkgs/pkgs/development/python-modules/zeep/default.nix
Martin Weinelt 23aeaac3d4
python311Packages.zeep: expose optionals and clean up
Set format, prune disabled tests.
2023-08-04 19:12:02 +02:00

91 lines
1.5 KiB
Nix

{ lib
, aiohttp
, aioresponses
, attrs
, buildPythonPackage
, defusedxml
, fetchFromGitHub
, freezegun
, httpx
, isodate
, lxml
, mock
, platformdirs
, pretend
, pytest-asyncio
, pytest-httpx
, pytestCheckHook
, pythonOlder
, pytz
, requests
, requests-toolbelt
, requests-file
, requests-mock
, xmlsec
}:
buildPythonPackage rec {
pname = "zeep";
version = "4.2.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "mvantellingen";
repo = "python-zeep";
rev = "refs/tags/${version}";
hash = "sha256-8f6kS231gbaZ8qyE8BKMcbnZsm8o2+iBoTlQrs5X+jY=";
};
propagatedBuildInputs = [
attrs
defusedxml
isodate
lxml
platformdirs
pytz
requests
requests-file
requests-toolbelt
];
passthru.optional-dependencies = {
async_require = [
httpx
];
xmlsec_require = [
xmlsec
];
};
pythonImportsCheck = [
"zeep"
];
nativeCheckInputs = [
aiohttp
aioresponses
freezegun
mock
pretend
pytest-asyncio
pytest-httpx
pytestCheckHook
requests-mock
]
++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
preCheck = ''
export HOME=$TMPDIR
'';
meta = with lib; {
changelog = "https://github.com/mvantellingen/python-zeep/releases/tag/${version}";
description = "Python SOAP client";
homepage = "http://docs.python-zeep.org";
license = licenses.mit;
maintainers = with maintainers; [ rvl ];
};
}