python310Packages.starlette 0 -> 1 attrpath: python310Packages.starlette Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/jcgflgfnm533mrrxgfl18ka2z6s73nk3-packages.json.drv building '/nix/store/jcgflgfnm533mrrxgfl18ka2z6s73nk3-packages.json.drv'... Going to be running update for following packages: - python3.10-starlette-0.23.1 Press Enter key to continue... Running update for: - python3.10-starlette-0.23.1: UPDATING ... - python3.10-starlette-0.23.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/starlette/default.nix b/pkgs/development/python-modules/starlette/default.nix index 54fe677dab2..134b6d37e3c 100644 --- a/pkgs/development/python-modules/starlette/default.nix +++ b/pkgs/development/python-modules/starlette/default.nix @@ -22,7 +22,7 @@ buildPythonPackage rec { pname = "starlette"; - version = "0.23.1"; + version = "0.25.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -31,7 +31,7 @@ buildPythonPackage rec { owner = "encode"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-LcFrdaRgFBqcdylCzNlewj/papsg/sZ1FMVxBDLvQWI="; + hash = "sha256-s0ADo/+lcH8Y31hf1iSLbfTsV3fZtlCuZf7BS0uQc9Y="; }; nativeBuildInputs = [ No auto update branch exists Old version 0.23.1" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , fetchFromGitHub , hatchling # runtime , ApplicationServices , anyio , itsdangerous , jinja2 , python-multipart , pyyaml , httpx , typing-extensions # tests , pytestCheckHook , pythonOlder , trio }: buildPythonPackage rec { pname = "starlette"; version = "0.25.0"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "encode"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-s0ADo/+lcH8Y31hf1iSLbfTsV3fZtlCuZf7BS0uQc9Y="; }; nativeBuildInputs = [ hatchling ]; postPatch = '' # remove coverage arguments to pytest sed -i '/--cov/d' setup.cfg ''; propagatedBuildInputs = [ anyio itsdangerous jinja2 python-multipart pyyaml httpx ] ++ lib.optionals (pythonOlder "3.10") [ typing-extensions ] ++ lib.optionals stdenv.isDarwin [ ApplicationServices ]; nativeCheckInputs = [ pytestCheckHook trio typing-extensions ]; pytestFlagsArray = [ "-W" "ignore::DeprecationWarning" "-W" "ignore::trio.TrioDeprecationWarning" ]; disabledTests = [ # asserts fail due to inclusion of br in Accept-Encoding "test_websocket_headers" "test_request_headers" ]; pythonImportsCheck = [ "starlette" ]; meta = with lib; { changelog = "https://github.com/encode/starlette/releases/tag/${version}"; homepage = "https://www.starlette.io/"; description = "The little ASGI framework that shines"; license = licenses.bsd3; maintainers = with maintainers; [ wd15 ]; }; }