fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
82 lines
1.3 KiB
Nix
82 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonRelaxDepsHook,
|
|
|
|
# build-system
|
|
setuptools,
|
|
|
|
# dependencies
|
|
brotlicffi,
|
|
decorator,
|
|
flasgger,
|
|
flask,
|
|
greenlet,
|
|
six,
|
|
werkzeug,
|
|
|
|
# optional-dependencies
|
|
gunicorn,
|
|
gevent,
|
|
|
|
# tests
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "httpbin";
|
|
version = "0.10.2";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-YyFIaYJhyGhOotK2JM3qhFtAKx/pFzbonfiGQIxjF6k=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
pythonRelaxDeps = [ "greenlet" ];
|
|
|
|
propagatedBuildInputs = [
|
|
brotlicffi
|
|
decorator
|
|
flask
|
|
flasgger
|
|
greenlet
|
|
six
|
|
werkzeug
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
mainapp = [
|
|
gunicorn
|
|
gevent
|
|
];
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
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/psf/httpbin";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|