python311Packages.uvicorn 0 -> 1 attrpath: python311Packages.uvicorn 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 [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] Going to be running update for following packages: - python3.11-uvicorn-0.27.1 Press Enter key to continue... Running update for: - python3.11-uvicorn-0.27.1: UPDATING ... - python3.11-uvicorn-0.27.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/uvicorn/default.nix b/pkgs/development/python-modules/uvicorn/default.nix index 6201bb615726..35fd35279a81 100644 --- a/pkgs/development/python-modules/uvicorn/default.nix +++ b/pkgs/development/python-modules/uvicorn/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "uvicorn"; - version = "0.27.1"; + version = "0.29.0"; disabled = pythonOlder "3.8"; pyproject = true; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "encode"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-p0iPQE66RJfd811x6cnv7m3yvD/L9v7evBXlaIQSE0M="; + hash = "sha256-D0FdZxaDB+9N/7p73GF8qw0UwbXTQrKc1WOgy9UltxA="; }; outputs = [ No auto update branch exists Old version 0.27.1" not present in staging derivation file with contents: { lib , buildPythonPackage , callPackage , fetchFromGitHub , click , h11 , httptools , python-dotenv , pyyaml , typing-extensions , uvloop , watchfiles , websockets , hatchling , pythonOlder }: buildPythonPackage rec { pname = "uvicorn"; version = "0.29.0"; disabled = pythonOlder "3.8"; pyproject = true; src = fetchFromGitHub { owner = "encode"; repo = "uvicorn"; rev = "refs/tags/${version}"; hash = "sha256-D0FdZxaDB+9N/7p73GF8qw0UwbXTQrKc1WOgy9UltxA="; }; outputs = [ "out" "testsout" ]; build-system = [ hatchling ]; dependencies = [ click h11 ] ++ lib.optionals (pythonOlder "3.11") [ typing-extensions ]; passthru.optional-dependencies.standard = [ httptools python-dotenv pyyaml uvloop watchfiles websockets ]; postInstall = '' mkdir $testsout cp -R tests $testsout/tests ''; pythonImportsCheck = [ "uvicorn" ]; # check in passthru.tests.pytest to escape infinite recursion with httpx/httpcore doCheck = false; passthru.tests = { pytest = callPackage ./tests.nix { }; }; meta = with lib; { homepage = "https://www.uvicorn.org/"; changelog = "https://github.com/encode/uvicorn/blob/${src.rev}/CHANGELOG.md"; description = "The lightning-fast ASGI server"; mainProgram = "uvicorn"; license = licenses.bsd3; maintainers = with maintainers; [ wd15 ]; }; }