python310Packages.python-docx 0 -> 1 attrpath: python310Packages.python-docx 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] Going to be running update for following packages: - python3.10-python-docx-0.8.11 Press Enter key to continue... Running update for: - python3.10-python-docx-0.8.11: UPDATING ... - python3.10-python-docx-0.8.11: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/python-docx/default.nix b/pkgs/development/python-modules/python-docx/default.nix index 79ba5c871a5f..f693969e8e58 100644 --- a/pkgs/development/python-modules/python-docx/default.nix +++ b/pkgs/development/python-modules/python-docx/default.nix @@ -10,12 +10,12 @@ buildPythonPackage rec { pname = "python-docx"; - version = "0.8.11"; + version = "1.1.0"; format = "setuptools"; src = fetchPypi { inherit pname version; - sha256 = "1105d233a0956dd8dd1e710d20b159e2d72ac3c301041b95f4d4ceb3e0ebebc4"; + sha256 = "sha256-WCm3IhQc8at5rt8MNNn+mSSyl2RYTA8hZOsrAtzfF8k="; }; nativeCheckInputs = [ behave mock pyparsing pytest ]; No auto update branch exists Old version 0.8.11" not present in staging derivation file with contents: { lib , behave , buildPythonPackage , fetchPypi , lxml , mock , pyparsing , pytestCheckHook , pythonOlder , setuptools , typing-extensions }: buildPythonPackage rec { pname = "python-docx"; version = "1.1.0"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-WCm3IhQc8at5rt8MNNn+mSSyl2RYTA8hZOsrAtzfF8k="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ lxml typing-extensions ]; nativeCheckInputs = [ behave mock pyparsing pytestCheckHook ]; postCheck = '' behave --format progress --stop --tags=-wip ''; pythonImportsCheck = [ "docx" ]; meta = with lib; { description = "Create and update Microsoft Word .docx files"; homepage = "https://python-docx.readthedocs.io/"; changelog = "https://github.com/python-openxml/python-docx/blob/v${version}/HISTORY.rst"; license = licenses.mit; maintainers = with maintainers; [ alexchapman ]; }; }