python311Packages.uqbar 0 -> 1 attrpath: python311Packages.uqbar 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.11-uqbar-0.7.3 Press Enter key to continue... Running update for: - python3.11-uqbar-0.7.3: UPDATING ... - python3.11-uqbar-0.7.3: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/uqbar/default.nix b/pkgs/development/python-modules/uqbar/default.nix index c7c6e8e2eea6..83ccc7fe11fd 100644 --- a/pkgs/development/python-modules/uqbar/default.nix +++ b/pkgs/development/python-modules/uqbar/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "uqbar"; - version = "0.7.3"; + version = "0.7.4"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-9KQmLCsIiHcdiAu4GeEu+wa3lGwEZOO+oHWuhFNosR0="; + hash = "sha256-q4p+ki5wA/gYGWnt2tzCiEakk4fBl9P96ONz2ZxlCCg="; }; postPatch = '' No auto update branch exists Old version 0.7.3" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , pytestCheckHook , pythonAtLeast , pythonOlder , setuptools , sphinx , unidecode }: buildPythonPackage rec { pname = "uqbar"; version = "0.7.4"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; hash = "sha256-q4p+ki5wA/gYGWnt2tzCiEakk4fBl9P96ONz2ZxlCCg="; }; postPatch = '' sed -i pyproject.toml \ -e '/"black"/d' \ -e "/--cov/d" ''; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ unidecode sphinx ]; nativeCheckInputs = [ pytestCheckHook ]; disabledTests = [ # UnboundLocalError: local variable 'output_path' referenced before assignment "test_01" # AssertionError: assert False "test_sphinx_book_html_cached" # FileNotFoundError: [Errno 2] No such file or directory: 'unflatten' "test_sphinx_style_html" # assert not ["\x1b[91mWARNING: dot command 'dot' cannot be run (needed for # graphviz output), check the graphviz_dot setting\x1b[39;49;00m"] "test_sphinx_style_latex" ] ++ lib.optional (pythonAtLeast "3.11") [ # assert not '\x1b[91m/build/uqbar-0.7.0/tests/fake_package/enums.py:docstring "test_sphinx_style" ] ++ lib.optional (pythonAtLeast "3.12") [ # https://github.com/josiah-wolf-oberholtzer/uqbar/issues/93 "objects.get_vars" ]; pythonImportsCheck = [ "uqbar" ]; meta = with lib; { description = "Tools for creating Sphinx and Graphviz documentation"; homepage = "https://github.com/josiah-wolf-oberholtzer/uqbar"; changelog = "https://github.com/josiah-wolf-oberholtzer/uqbar/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ davisrichard437 ]; }; }