python312Packages.rq 1.15.1 -> 1.16.1 https://github.com/rq/rq/releases attrpath: python312Packages.rq 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] this derivation will be built: /nix/store/vyacm7i0ymh4giydrcb66h2q6jnfs10x-packages.json.drv building '/nix/store/vyacm7i0ymh4giydrcb66h2q6jnfs10x-packages.json.drv'... Going to be running update for following packages: - python3.12-rq-1.15.1 Press Enter key to continue... Running update for: - python3.12-rq-1.15.1: UPDATING ... - python3.12-rq-1.15.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/rq/default.nix b/pkgs/development/python-modules/rq/default.nix index b8e19d46f790..12733127f2f9 100644 --- a/pkgs/development/python-modules/rq/default.nix +++ b/pkgs/development/python-modules/rq/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "rq"; - version = "1.15.1"; + version = "1.16.1"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "rq"; repo = "rq"; rev = "refs/tags/v${version}"; - hash = "sha256-cymNXFI+6YEVw2Pc7u6+vroC0428oW7BTLxyBgPqLng="; + hash = "sha256-1E7jPTSQCjuKZVFL4uZqL1WZHnxWSLTNcnpyvfHz7oY="; }; propagatedBuildInputs = [ No auto update branch exists Old version 1.15.1" not present in staging derivation file with contents: { lib , stdenv , fetchFromGitHub , buildPythonPackage , pythonOlder # build-system , hatchling # dependencies , click , redis # tests , psutil , pytestCheckHook , redis-server , sentry-sdk }: buildPythonPackage rec { pname = "rq"; version = "1.16.1"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "rq"; repo = "rq"; rev = "refs/tags/v${version}"; hash = "sha256-1E7jPTSQCjuKZVFL4uZqL1WZHnxWSLTNcnpyvfHz7oY="; }; build-system = [ hatchling ]; dependencies = [ click redis ]; nativeCheckInputs = [ psutil pytestCheckHook sentry-sdk ]; preCheck = lib.optionalString stdenv.isLinux '' PATH=$out/bin:$PATH ${redis-server}/bin/redis-server & REDIS_PID=$! ''; postCheck = lib.optionalString stdenv.isLinux '' kill $REDIS_PID ''; pythonImportsCheck = [ "rq" ]; meta = with lib; { description = "Library for creating background jobs and processing them"; homepage = "https://github.com/nvie/rq/"; changelog = "https://github.com/rq/rq/releases/tag/v${version}"; license = licenses.bsd2; maintainers = with maintainers; [ mrmebelman ]; }; }