depot/third_party/nixpkgs/pkgs/development/python-modules/webob/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

41 lines
778 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "webob";
version = "1.8.7";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "WebOb";
inherit version;
hash = "sha256-tk71FBvlWc+t5EjwRPpFwiYDUe3Lao72t+AMfc7wwyM=";
};
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"webob"
];
disabledTestPaths = [
# AttributeError: 'Thread' object has no attribute 'isAlive'
"tests/test_in_wsgiref.py"
"tests/test_client_functional.py"
];
meta = with lib; {
description = "WSGI request and response object";
homepage = "https://webob.org/";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}