python310Packages.ssdp 0 -> 1 attrpath: python310Packages.ssdp 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/6d20a3zsfdavh853lllbd77rn5hp3r9d-packages.json.drv building '/nix/store/6d20a3zsfdavh853lllbd77rn5hp3r9d-packages.json.drv'... Going to be running update for following packages: - python3.10-ssdp-1.1.0 Press Enter key to continue... Running update for: - python3.10-ssdp-1.1.0: UPDATING ... - python3.10-ssdp-1.1.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/ssdp/default.nix b/pkgs/development/python-modules/ssdp/default.nix index bd73a6abaea..b21f043f0b5 100644 --- a/pkgs/development/python-modules/ssdp/default.nix +++ b/pkgs/development/python-modules/ssdp/default.nix @@ -9,15 +9,15 @@ buildPythonPackage rec { pname = "ssdp"; - version = "1.1.0"; + version = "1.1.1"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "codingjoe"; repo = pname; - rev = version; - sha256 = "19d2b5frpq2qkfkpz173wpjk5jwhkjpk75p8q92nm8iv41nrzljy"; + rev = "refs/tags/${version}"; + sha256 = "sha256-D2mww3sEc2SvufWNmT450a2CW+ogROn3RHypljkebuY="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; No auto update branch exists Old version 1.1.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , pbr , pytestCheckHook , pythonOlder , setuptools-scm }: buildPythonPackage rec { pname = "ssdp"; version = "1.1.1"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "codingjoe"; repo = pname; rev = "refs/tags/${version}"; sha256 = "sha256-D2mww3sEc2SvufWNmT450a2CW+ogROn3RHypljkebuY="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; nativeBuildInputs = [ setuptools-scm ]; buildInputs = [ pbr ]; checkInputs = [ pytestCheckHook ]; postPatch = '' substituteInPlace setup.cfg \ --replace "pytest-runner" "" \ --replace "--cov=ssdp" "" ''; pythonImportsCheck = [ "ssdp" ]; meta = with lib; { description = "Python asyncio library for Simple Service Discovery Protocol (SSDP)"; homepage = "https://github.com/codingjoe/ssdp"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }