python310Packages.mac_alias 0 -> 1 attrpath: python310Packages.mac_alias 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/q8f6sfblix3rl3d9awbpw022ibcfwiwn-packages.json.drv building '/nix/store/q8f6sfblix3rl3d9awbpw022ibcfwiwn-packages.json.drv'... Going to be running update for following packages: - python3.10-mac_alias-2.2.0 Press Enter key to continue... Running update for: - python3.10-mac_alias-2.2.0: UPDATING ... - python3.10-mac_alias-2.2.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/mac_alias/default.nix b/pkgs/development/python-modules/mac_alias/default.nix index ac750b13e39..afeda4643d9 100644 --- a/pkgs/development/python-modules/mac_alias/default.nix +++ b/pkgs/development/python-modules/mac_alias/default.nix @@ -2,12 +2,12 @@ }: buildPythonPackage rec { - version = "2.2.0"; + version = "2.2.2"; pname = "mac_alias"; src = fetchPypi { inherit pname version; - sha256 = "0eb84a63f98bf54c2f9fbdc4de956a63e64eb8a4a124143a1c1f5a78326442f0"; + sha256 = "sha256-yZxyjrUS6VXBHxpiA6D/qIg7JlSeiv5ogEAxql2oVrc="; }; # pypi package does not include tests; No auto update branch exists Old version 2.2.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , setuptools }: buildPythonPackage rec { pname = "mac-alias"; version = "2.2.2"; format = "pyproject"; src = fetchPypi { pname = "mac_alias"; inherit version; hash = "sha256-yZxyjrUS6VXBHxpiA6D/qIg7JlSeiv5ogEAxql2oVrc="; }; nativeBuildInputs = [ setuptools ]; # pypi package does not include tests; # tests anyway require admin privileges to succeed doCheck = false; pythonImportsCheck = [ "mac_alias" ]; meta = with lib; { homepage = "https://github.com/al45tair/mac_alias"; description = "Generate or read binary Alias and Bookmark records from Python code"; longDescription = '' mac_alias lets you generate or read binary Alias and Bookmark records from Python code. While it is written in pure Python, some OS X specific code is required to generate a proper Alias or Bookmark record for a given file, so this module currently is not portable to other platforms. ''; license = licenses.mit; maintainers = with maintainers; [ siriobalmelli ]; }; }