python310Packages.django-health-check 0 -> 1 attrpath: python310Packages.django-health-check 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/7fv0himisgri17czgmgi4hv03c9vg6w6-packages.json.drv building '/nix/store/7fv0himisgri17czgmgi4hv03c9vg6w6-packages.json.drv'... Going to be running update for following packages: - python3.10-django-health-check-3.16.5 Press Enter key to continue... Running update for: - python3.10-django-health-check-3.16.5: UPDATING ... - python3.10-django-health-check-3.16.5: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/django-health-check/default.nix b/pkgs/development/python-modules/django-health-check/default.nix index 6f38ae77e16..0647b4545e3 100644 --- a/pkgs/development/python-modules/django-health-check/default.nix +++ b/pkgs/development/python-modules/django-health-check/default.nix @@ -13,13 +13,13 @@ buildPythonPackage rec { pname = "django-health-check"; - version = "3.16.5"; + version = "3.17.0"; src = fetchFromGitHub { owner = "KristianOellegaard"; repo = pname; - rev = version; - hash = "sha256-Jfzi+o4ja2sNCSPfX9eRq3WGid1gcfehhayAD1L4f2U="; + rev = "refs/tags/${version}"; + hash = "sha256-9AspaARz6ww5Y2nTDji4RaJ4+OWF13c3DSEebrGS8eM="; leaveDotGit = true; }; No auto update branch exists Old version 3.16.5" not present in staging derivation file with contents: { lib , fetchFromGitHub , buildPythonPackage , sphinx , setuptools-scm , django , redis , celery , pytest-django , pytestCheckHook , mock , gitMinimal }: buildPythonPackage rec { pname = "django-health-check"; version = "3.17.0"; src = fetchFromGitHub { owner = "KristianOellegaard"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-f87dgB2pDc+A0h41FX13qTj6Zzw5I4QwsDoC6yPkvAE="; leaveDotGit = true; }; buildInputs = [ sphinx django ]; nativeBuildInputs = [ setuptools-scm gitMinimal ]; checkInputs = [ pytest-django pytestCheckHook mock celery redis ]; postPatch = '' # We don't want to generate coverage substituteInPlace setup.cfg \ --replace "pytest-runner" "" \ --replace "--cov=health_check" "" \ --replace "--cov-report=term" "" \ --replace "--cov-report=xml" "" ''; pythonImportsCheck = [ "health_check" ]; meta = with lib; { description = "Pluggable app that runs a full check on the deployment"; homepage = "https://github.com/KristianOellegaard/django-health-check"; license = licenses.mit; maintainers = with maintainers; [ onny ]; }; }