pythonPackages.starlette: 0.13.6 -> 0.13.8

remove outdated comment
This commit is contained in:
Robert Scott 2020-08-27 23:27:15 +01:00 committed by Jon
parent 063692bb10
commit 4f612035e3

View file

@ -21,19 +21,14 @@
buildPythonPackage rec {
pname = "starlette";
# This is not the latest version of Starlette, however, later
# versions of Starlette break FastAPI due to
# https://github.com/tiangolo/fastapi/issues/683. Please update when
# possible. FastAPI is currently Starlette's only dependent.
version = "0.13.6";
version = "0.13.8";
disabled = isPy27;
src = fetchFromGitHub {
owner = "encode";
repo = pname;
rev = version;
sha256 = "08d1d4qdwhi1xxag4am5ijingdyn0mbyqajs9ql5shxnybyjv321";
sha256 = "11i0yd8cqwscixajl734g11vf8pghki11c81chzfh8ifmj6mf9jk";
};
propagatedBuildInputs = [
@ -57,6 +52,7 @@ buildPythonPackage rec {
checkPhase = ''
pytest --ignore=tests/test_graphql.py
'';
pythonImportsCheck = [ "starlette" ];
meta = with lib; {
homepage = "https://www.starlette.io/";