python310Packages.awslambdaric 0 -> 1 attrpath: python310Packages.awslambdaric Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [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] this derivation will be built: /nix/store/ih2j6c76mfd9jvriadq3lnykjfi6r16w-packages.json.drv building '/nix/store/ih2j6c76mfd9jvriadq3lnykjfi6r16w-packages.json.drv'... Going to be running update for following packages: - python3.10-awslambdaric-2.0.0 Press Enter key to continue... Running update for: - python3.10-awslambdaric-2.0.0: UPDATING ... - python3.10-awslambdaric-2.0.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/awslambdaric/default.nix b/pkgs/development/python-modules/awslambdaric/default.nix index d79b3448f212..1d89f2e93241 100644 --- a/pkgs/development/python-modules/awslambdaric/default.nix +++ b/pkgs/development/python-modules/awslambdaric/default.nix @@ -16,14 +16,14 @@ buildPythonPackage rec { pname = "awslambdaric"; - version = "2.0.0"; + version = "2.0.7"; disabled = isPy27; src = fetchFromGitHub { owner = "aws"; repo = "aws-lambda-python-runtime-interface-client"; - rev = version; - sha256 = "1amlaq119mk8fa3fxi3d6vgp83vcd81mbk53jzbixacklmcsp50k"; + rev = "refs/tags/${version}"; + sha256 = "sha256-9PgdLzeSafglguXksMetzopbDlBWlGDSSXiZHfuWgE8="; }; patches = [ No auto update branch exists Old version 2.0.0" not present in staging derivation file with contents: { stdenv , lib , buildPythonPackage , fetchFromGitHub , fetchpatch , isPy27 , pytestCheckHook , autoconf , automake , cmake , gcc , libtool , perl , simplejson }: buildPythonPackage rec { pname = "awslambdaric"; version = "2.0.7"; disabled = isPy27; src = fetchFromGitHub { owner = "aws"; repo = "aws-lambda-python-runtime-interface-client"; rev = "refs/tags/${version}"; sha256 = "sha256-9PgdLzeSafglguXksMetzopbDlBWlGDSSXiZHfuWgE8="; }; patches = [ (fetchpatch { # https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/58 url = "https://github.com/aws/aws-lambda-python-runtime-interface-client/commit/162c3c0051bb9daa92e4a2a4af7e90aea60ee405.patch"; sha256 = "09qqq5x6npc9jw2qbhzifqn5sqiby4smiin1aw30psmlp21fv7j8"; }) ]; postPatch = '' substituteInPlace requirements/base.txt \ --replace 'simplejson==3' 'simplejson~=3' ''; propagatedBuildInputs = [ simplejson ]; nativeBuildInputs = [ autoconf automake cmake libtool perl ]; buildInputs = [ gcc ]; dontUseCmakeConfigure = true; nativeCheckInputs = [ pytestCheckHook ]; disabledTests = [ # Test fails with: Assertion error "test_handle_event_request_fault_exception_logging_syntax_error" ]; pythonImportsCheck = [ "awslambdaric" "runtime_client" ]; meta = with lib; { broken = (stdenv.isLinux && stdenv.isAarch64); description = "AWS Lambda Runtime Interface Client for Python"; homepage = "https://github.com/aws/aws-lambda-python-runtime-interface-client"; license = licenses.asl20; maintainers = with maintainers; [ austinbutler ]; platforms = platforms.linux; }; }