2020-04-24 23:36:52 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, aiofiles
|
2021-09-18 10:52:07 +00:00
|
|
|
, anyio
|
|
|
|
, contextlib2
|
2020-04-24 23:36:52 +00:00
|
|
|
, itsdangerous
|
|
|
|
, jinja2
|
2021-01-09 10:05:03 +00:00
|
|
|
, python-multipart
|
2020-04-24 23:36:52 +00:00
|
|
|
, pyyaml
|
|
|
|
, requests
|
|
|
|
, aiosqlite
|
2021-01-09 10:05:03 +00:00
|
|
|
, databases
|
2021-09-18 10:52:07 +00:00
|
|
|
, pytestCheckHook
|
|
|
|
, pythonOlder
|
|
|
|
, trio
|
2021-01-09 10:05:03 +00:00
|
|
|
, typing-extensions
|
|
|
|
, ApplicationServices
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "starlette";
|
2022-08-12 12:06:08 +00:00
|
|
|
version = "0.20.4";
|
2022-01-03 16:56:52 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
2021-09-18 10:52:07 +00:00
|
|
|
disabled = pythonOlder "3.6";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "encode";
|
|
|
|
repo = pname;
|
2022-08-12 12:06:08 +00:00
|
|
|
rev = "refs/tags/${version}";
|
|
|
|
hash = "sha256-vP2TJPn9lRGnLGkO8lUmnsoT6rSnhuWDD3WqNk76SM0=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-03-23 19:22:30 +00:00
|
|
|
postPatch = ''
|
|
|
|
# remove coverage arguments to pytest
|
|
|
|
sed -i '/--cov/d' setup.cfg
|
|
|
|
'';
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
aiofiles
|
2021-09-18 10:52:07 +00:00
|
|
|
anyio
|
2020-04-24 23:36:52 +00:00
|
|
|
itsdangerous
|
|
|
|
jinja2
|
2021-01-09 10:05:03 +00:00
|
|
|
python-multipart
|
2020-04-24 23:36:52 +00:00
|
|
|
pyyaml
|
|
|
|
requests
|
2021-09-18 10:52:07 +00:00
|
|
|
] ++ lib.optionals (pythonOlder "3.8") [
|
|
|
|
typing-extensions
|
|
|
|
] ++ lib.optionals (pythonOlder "3.7") [
|
|
|
|
contextlib2
|
2022-10-30 15:09:59 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
2021-09-18 10:52:07 +00:00
|
|
|
ApplicationServices
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
aiosqlite
|
2021-01-09 10:05:03 +00:00
|
|
|
databases
|
|
|
|
pytestCheckHook
|
2021-09-18 10:52:07 +00:00
|
|
|
trio
|
2021-01-09 10:05:03 +00:00
|
|
|
typing-extensions
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2021-09-18 10:52:07 +00:00
|
|
|
disabledTests = [
|
|
|
|
# asserts fail due to inclusion of br in Accept-Encoding
|
|
|
|
"test_websocket_headers"
|
|
|
|
"test_request_headers"
|
2021-07-14 22:03:04 +00:00
|
|
|
];
|
2021-03-23 19:22:30 +00:00
|
|
|
|
2022-01-03 16:56:52 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"starlette"
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://www.starlette.io/";
|
|
|
|
description = "The little ASGI framework that shines";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ wd15 ];
|
|
|
|
};
|
|
|
|
}
|