a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
65 lines
1.4 KiB
Nix
65 lines
1.4 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, freezegun
|
|
, graphql-core
|
|
, opentracing
|
|
, pytest-asyncio
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, snapshottest
|
|
, starlette
|
|
, typing-extensions
|
|
, werkzeug
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ariadne";
|
|
version = "0.17.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mirumee";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-LRsijp2N0L4QCvPt0vWBX0qE4yqDDKtMcTBQ/eAkljA=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
graphql-core
|
|
starlette
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
freezegun
|
|
opentracing
|
|
pytest-asyncio
|
|
pytest-mock
|
|
pytestCheckHook
|
|
snapshottest
|
|
werkzeug
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"ariadne"
|
|
];
|
|
|
|
disabledTests = [
|
|
# TypeError: TestClient.request() got an unexpected keyword argument 'content'
|
|
"test_attempt_parse_request_missing_content_type_raises_bad_request_error"
|
|
"test_attempt_parse_non_json_request_raises_bad_request_error"
|
|
"test_attempt_parse_non_json_request_body_raises_bad_request_error"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for implementing GraphQL servers using schema-first approach";
|
|
homepage = "https://ariadnegraphql.org";
|
|
changelog = "https://github.com/mirumee/ariadne/blob/${version}/CHANGELOG.md";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ samuela ];
|
|
};
|
|
}
|