python310Packages.localstack-ext 0 -> 1 attrpath: python310Packages.localstack-ext 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.10-localstack-ext-2.3.2 Press Enter key to continue... Running update for: - python3.10-localstack-ext-2.3.2: UPDATING ... - python3.10-localstack-ext-2.3.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/localstack-ext/default.nix b/pkgs/development/python-modules/localstack-ext/default.nix index 90e743f839e7..07301bf2af32 100644 --- a/pkgs/development/python-modules/localstack-ext/default.nix +++ b/pkgs/development/python-modules/localstack-ext/default.nix @@ -16,12 +16,12 @@ buildPythonPackage rec { pname = "localstack-ext"; - version = "2.3.2"; + version = "3.0.2"; format = "setuptools"; src = fetchPypi { inherit pname version; - hash = "sha256-Ex5ZPlteDaiyex90QumucVdTTbpp9uWiBrvw1kMr++8="; + hash = "sha256-KNM/HjSWVwenLqtXbaRP70k7b7YXk//aKGEkBxPp1fA="; }; postPatch = '' No auto update branch exists Old version 2.3.2" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi # build-system , setuptools , plux # dependencies , cachetools , click , cryptography , dill , dnslib , dnspython , psutil , python-dotenv , pyyaml , requests , rich , semver , stevedore , tailer # Sensitive downstream dependencies , localstack }: buildPythonPackage rec { pname = "localstack-ext"; version = "3.0.2"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-KNM/HjSWVwenLqtXbaRP70k7b7YXk//aKGEkBxPp1fA="; }; postPatch = '' # Avoid circular dependency sed -i '/localstack>=/d' setup.cfg # Pip is unable to resolve attr logic, so it will emit version as 0.0.0 substituteInPlace setup.cfg \ --replace "version = attr: localstack_ext.__version__" "version = ${version}" cat setup.cfg substituteInPlace setup.cfg \ --replace "dill==0.3.2" "dill~=0.3.0" \ --replace "requests>=2.20.0,<2.26" "requests~=2.20" ''; nativeBuildInputs = [ plux setuptools ]; propagatedBuildInputs = [ cachetools click cryptography dill dnslib dnspython plux psutil python-dotenv pyyaml rich requests semver stevedore tailer ]; pythonImportsCheck = [ "localstack_ext" ]; # No tests in repo doCheck = false; passthru.tests = { inherit localstack; }; meta = with lib; { description = "Extensions for LocalStack"; homepage = "https://github.com/localstack/localstack"; license = licenses.asl20; maintainers = with maintainers; [ jonringer ]; }; }