From f581e4c8a13b02334d7c00519918afb6d8eff13c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 6 Feb 2021 14:07:00 +0100 Subject: [PATCH] python3Packages.starlette: 0.13.8 -> 0.14.2 --- pkgs/development/python-modules/starlette/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/starlette/default.nix b/pkgs/development/python-modules/starlette/default.nix index d802a230003568..d8bf0a4b4bf554 100644 --- a/pkgs/development/python-modules/starlette/default.nix +++ b/pkgs/development/python-modules/starlette/default.nix @@ -10,26 +10,25 @@ , python-multipart , pyyaml , requests -, ujson , aiosqlite , databases , pytestCheckHook +, pytest-cov , pytest-asyncio -, pytestcov , typing-extensions , ApplicationServices }: buildPythonPackage rec { pname = "starlette"; - version = "0.13.8"; + version = "0.14.2"; disabled = isPy27; src = fetchFromGitHub { owner = "encode"; repo = pname; rev = version; - sha256 = "11i0yd8cqwscixajl734g11vf8pghki11c81chzfh8ifmj6mf9jk"; + sha256 = "0fz28czvwiww693ig9vwdja59xxs7m0yp1df32ms1hzr99666bia"; }; propagatedBuildInputs = [ @@ -40,13 +39,14 @@ buildPythonPackage rec { python-multipart pyyaml requests - ujson ] ++ lib.optional stdenv.isDarwin [ ApplicationServices ]; checkInputs = [ aiosqlite databases pytestCheckHook + pytest-cov + pytest-asyncio typing-extensions ];