64 lines
1.1 KiB
Nix
64 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, isPy27
|
|
, aiofiles
|
|
, graphene
|
|
, itsdangerous
|
|
, jinja2
|
|
, python-multipart
|
|
, pyyaml
|
|
, requests
|
|
, ujson
|
|
, aiosqlite
|
|
, databases
|
|
, pytestCheckHook
|
|
, pytest-asyncio
|
|
, pytestcov
|
|
, typing-extensions
|
|
, ApplicationServices
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "starlette";
|
|
version = "0.13.8";
|
|
disabled = isPy27;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "encode";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "11i0yd8cqwscixajl734g11vf8pghki11c81chzfh8ifmj6mf9jk";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiofiles
|
|
graphene
|
|
itsdangerous
|
|
jinja2
|
|
python-multipart
|
|
pyyaml
|
|
requests
|
|
ujson
|
|
] ++ lib.optional stdenv.isDarwin [ ApplicationServices ];
|
|
|
|
checkInputs = [
|
|
aiosqlite
|
|
databases
|
|
pytestCheckHook
|
|
typing-extensions
|
|
];
|
|
|
|
pytestFlagsArray = [ "--ignore=tests/test_graphql.py" ];
|
|
|
|
pythonImportsCheck = [ "starlette" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.starlette.io/";
|
|
description = "The little ASGI framework that shines";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ wd15 ];
|
|
};
|
|
}
|