diff options
| author | Sandro <sandro.jaeckel@gmail.com> | 2021-08-19 00:22:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-19 00:22:41 +0200 |
| commit | d4f591b375191c7df7dfd44c0fe7742dfc33aefe (patch) | |
| tree | 44504a797569d5fb9bd4ac9bcf02330c73b18f3e /pkgs/development/python-modules | |
| parent | cf8a4370cb10f98ebd481706120d1160bfd28fd3 (diff) | |
| parent | 062d47f93ea0e00816b59691cd2394d529fde6fb (diff) | |
Merge pull request #134662 from fabaff/bump-webtest
Diffstat (limited to 'pkgs/development/python-modules')
| -rw-r--r-- | pkgs/development/python-modules/webtest/default.nix | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/webtest/default.nix b/pkgs/development/python-modules/webtest/default.nix index d56e5415b918..e5dd4758df70 100644 --- a/pkgs/development/python-modules/webtest/default.nix +++ b/pkgs/development/python-modules/webtest/default.nix @@ -14,31 +14,44 @@ }: buildPythonPackage rec { - version = "2.0.32"; + version = "2.0.35"; pname = "webtest"; disabled = isPy27; # paste.deploy is not longer a valid import src = fetchPypi { pname = "WebTest"; inherit version; - sha256 = "4221020d502ff414c5fba83c1213985b83219cb1cc611fe58aa4feaf96b5e062"; + sha256 = "sha256-qsFotbK08gCvTjWGfPMWcSIQ49XbgcHL3/OHImR7sIc="; }; preConfigure = '' substituteInPlace setup.py --replace "nose<1.3.0" "nose" ''; - propagatedBuildInputs = [ webob six beautifulsoup4 waitress ]; - - checkInputs = [ nose mock PasteDeploy wsgiproxy2 pyquery ]; + propagatedBuildInputs = [ + webob + six + beautifulsoup4 + waitress + ]; + + checkInputs = [ + nose + mock + PasteDeploy + wsgiproxy2 + pyquery + ]; # Some of the tests use localhost networking. __darwinAllowLocalNetworking = true; + pythonImportsCheck = [ "webtest" ]; + meta = with lib; { description = "Helper to test WSGI applications"; homepage = "https://webtest.readthedocs.org/en/latest/"; license = licenses.mit; + maintainers = with maintainers; [ ]; }; - } |
