Merge pull request #23934 from rvl/python-zeep
pythonPackages.zeep: init at 1.1.0
This commit is contained in:
commit
c320267cf8
91
pkgs/development/python-modules/zeep/default.nix
Normal file
91
pkgs/development/python-modules/zeep/default.nix
Normal file
@ -0,0 +1,91 @@
|
||||
{ fetchPypi
|
||||
, lib
|
||||
, buildPythonPackage
|
||||
, python
|
||||
, isPy3k
|
||||
, appdirs
|
||||
, cached-property
|
||||
, defusedxml
|
||||
, isodate
|
||||
, lxml
|
||||
, pytz
|
||||
, requests_toolbelt
|
||||
, six
|
||||
# test dependencies
|
||||
, freezegun
|
||||
, mock
|
||||
, nose
|
||||
, pretend
|
||||
, pytest
|
||||
, pytestcov
|
||||
, requests-mock
|
||||
, testtools
|
||||
}:
|
||||
|
||||
let
|
||||
pname = "zeep";
|
||||
version = "1.1.0";
|
||||
in buildPythonPackage {
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "83e82b6cb59e84bf4725add3771ed442bb099fad5959c887efe7c49a8a940ea5";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
appdirs
|
||||
cached-property
|
||||
defusedxml
|
||||
isodate
|
||||
lxml
|
||||
pytz
|
||||
requests_toolbelt
|
||||
six
|
||||
];
|
||||
|
||||
# testtools dependency not supported for py3k
|
||||
doCheck = !isPy3k;
|
||||
|
||||
buildInputs = if isPy3k then [] else [
|
||||
freezegun
|
||||
mock
|
||||
nose
|
||||
pretend
|
||||
pytest
|
||||
pytestcov
|
||||
requests-mock
|
||||
];
|
||||
|
||||
patchPhase = ''
|
||||
# remove overly strict bounds and lint requirements
|
||||
sed -e "s/freezegun==.*'/freezegun'/" \
|
||||
-e "s/pytest-cov==.*'/pytest-cov'/" \
|
||||
-e "s/'isort.*//" \
|
||||
-e "s/'flake8.*//" \
|
||||
-i setup.py
|
||||
|
||||
# locale.preferredencoding() != 'utf-8'
|
||||
sed -e "s/xsd', 'r')/xsd', 'r', encoding='utf-8')/" -i tests/*.py
|
||||
|
||||
# cache defaults to home directory, which doesn't exist
|
||||
sed -e "s|SqliteCache()|SqliteCache(path='./zeeptest.db')|" \
|
||||
-i tests/test_transports.py
|
||||
|
||||
# requires xmlsec python module
|
||||
rm tests/test_wsse_signature.py
|
||||
'';
|
||||
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
${python.interpreter} -m pytest tests
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://docs.python-zeep.org";
|
||||
license = licenses.mit;
|
||||
description = "A modern/fast Python SOAP client based on lxml / requests";
|
||||
maintainers = with maintainers; [ rvl ];
|
||||
};
|
||||
}
|
@ -32132,6 +32132,9 @@ EOF
|
||||
yenc = callPackage ../development/python-modules/yenc {
|
||||
};
|
||||
|
||||
zeep = callPackage ../development/python-modules/zeep {
|
||||
};
|
||||
|
||||
zeitgeist = if isPy3k then throw "zeitgeist not supported for interpreter ${python.executable}" else
|
||||
(pkgs.zeitgeist.override{python2Packages=self;}).py;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user