python3Packages.httpbin: enable tests

This commit is contained in:
Fabian Affolter
2022-01-09 10:58:31 +01:00
committed by Martin Weinelt
parent 46cf897eb1
commit b4852980bd

View File

@@ -1,33 +1,65 @@
{ lib
, brotlipy
, buildPythonPackage
, decorator
, fetchPypi
, flask
, flask-limiter
, markupsafe
, decorator
, itsdangerous
, markupsafe
, raven
, six
, brotlipy
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "httpbin";
version = "0.7.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1yldvf3585zcwj4vxvfm4yr9wwlz3pa2mx2pazqz8x8mr687gcyb";
hash = "sha256-y7N3kMkVdfTxV1f0KtQdn3KesifV7b6J5OwXVIbbjfo=";
};
propagatedBuildInputs = [ brotlipy flask flask-limiter markupsafe decorator itsdangerous raven six ];
propagatedBuildInputs = [
brotlipy
flask
flask-limiter
markupsafe
decorator
itsdangerous
raven
six
];
# No tests
doCheck = false;
checkInputs = [
pytestCheckHook
];
pytestFlagsArray = [
"test_httpbin.py"
];
disabledTests = [
# Tests seems to be outdated
"test_anything"
"test_get"
"test_redirect_n_equals_to_1"
"test_redirect_n_higher_than_1"
"test_redirect_to_post"
"test_relative_redirect_n_equals_to_1"
"test_relative_redirect_n_higher_than_1"
];
pythonImportsCheck = [
"httpbin"
];
meta = with lib; {
description = "HTTP Request and Response Service";
homepage = "https://github.com/kennethreitz/httpbin";
description = "HTTP Request & Response Service";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}