python311Packages.GitPython 0 -> 1 attrpath: python311Packages.GitPython 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/prvkarx891kjvb7rw4an9bkmjfkj5nf6-packages.json.drv building '/nix/store/prvkarx891kjvb7rw4an9bkmjfkj5nf6-packages.json.drv'... Going to be running update for following packages: - python3.11-gitpython-3.1.40 Press Enter key to continue... Running update for: - python3.11-gitpython-3.1.40: UPDATING ... - python3.11-gitpython-3.1.40: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/gitpython/default.nix b/pkgs/development/python-modules/gitpython/default.nix index 50afd5ea4aa8..d76d0366c461 100644 --- a/pkgs/development/python-modules/gitpython/default.nix +++ b/pkgs/development/python-modules/gitpython/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "gitpython"; - version = "3.1.40"; + version = "3.1.42"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "gitpython-developers"; repo = "GitPython"; rev = "refs/tags/${version}"; - hash = "sha256-a5Ez6SuSqrJE306FrFjEnSoVhALVvubF1pLW4awK4gM="; + hash = "sha256-qpADumkfm8DHNlB2JeH/7sYrJqtYdFLv5YQAV0q5//s="; }; propagatedBuildInputs = [ No auto update branch exists Old version 3.1.40" not present in staging derivation file with contents: { lib , buildPythonPackage , ddt , fetchFromGitHub , gitdb , pkgs , pythonOlder , substituteAll , typing-extensions }: buildPythonPackage rec { pname = "gitpython"; version = "3.1.42"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "gitpython-developers"; repo = "GitPython"; rev = "refs/tags/${version}"; hash = "sha256-qpADumkfm8DHNlB2JeH/7sYrJqtYdFLv5YQAV0q5//s="; }; propagatedBuildInputs = [ ddt gitdb pkgs.gitMinimal ] ++ lib.optionals (pythonOlder "3.10") [ typing-extensions ]; postPatch = '' substituteInPlace git/cmd.py \ --replace 'git_exec_name = "git"' 'git_exec_name = "${pkgs.gitMinimal}/bin/git"' ''; # Tests require a git repo doCheck = false; pythonImportsCheck = [ "git" ]; meta = with lib; { description = "Python Git Library"; homepage = "https://github.com/gitpython-developers/GitPython"; changelog = "https://github.com/gitpython-developers/GitPython/blob/${version}/doc/source/changes.rst"; license = licenses.bsd3; maintainers = with maintainers; [ fab ]; }; }