python311Packages.python-memcached 1.61 -> 1.62 https://repology.org/project/python:python-memcached/versions attrpath: python311Packages.python-memcached 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/yniqncri5wqipqffq89x9nbyw802p1im-packages.json.drv building '/nix/store/yniqncri5wqipqffq89x9nbyw802p1im-packages.json.drv'... Going to be running update for following packages: - python3.11-python-memcached-1.61 Press Enter key to continue... Running update for: - python3.11-python-memcached-1.61: UPDATING ... - python3.11-python-memcached-1.61: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/python-memcached/default.nix b/pkgs/development/python-modules/python-memcached/default.nix index e82b6b51643a..575b6231b13c 100644 --- a/pkgs/development/python-modules/python-memcached/default.nix +++ b/pkgs/development/python-modules/python-memcached/default.nix @@ -8,14 +8,14 @@ buildPythonPackage rec { pname = "python-memcached"; - version = "1.61"; + version = "1.62"; pyproject = true; src = fetchFromGitHub { owner = "linsomniac"; repo = "python-memcached"; - rev = version; - hash = "sha256-7bUCVAmOJ6znVmTZg9AJokOuym07NHL12gZgQ2uhfNo="; + rev = "refs/tags/${version}"; + hash = "sha256-Qko4Qr9WofeklU0uRRrSPrT8YaBYMCy0GP+TF7YZHLI="; }; nativeBuildInputs = [ No auto update branch exists Old version 1.61" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , setuptools , memcached , mock , pytestCheckHook }: buildPythonPackage rec { pname = "python-memcached"; version = "1.62"; pyproject = true; src = fetchFromGitHub { owner = "linsomniac"; repo = "python-memcached"; rev = version; hash = "sha256-Qko4Qr9WofeklU0uRRrSPrT8YaBYMCy0GP+TF7YZHLI="; }; nativeBuildInputs = [ setuptools ]; nativeCheckInputs = [ memcached mock pytestCheckHook ]; preCheck = '' memcached & ''; postCheck = '' kill %% ''; __darwinAllowLocalNetworking = true; pythonImportsCheck = [ "memcache" ]; meta = with lib; { description = "Pure python memcached client"; homepage = "https://github.com/linsomniac/python-memcached"; license = licenses.psfl; maintainers = with maintainers; [ dotlambda ]; }; }