python310Packages.pytest-html 0 -> 1 attrpath: python310Packages.pytest-html Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] skipping because derivation has updateScript [updateScript] [updateScript] Success [updateScript] Going to be running update for following packages: - python3.10-pytest-html-4.0.2 Press Enter key to continue... Running update for: - python3.10-pytest-html-4.0.2: UPDATING ... - python3.10-pytest-html-4.0.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/pytest-html/default.nix b/pkgs/development/python-modules/pytest-html/default.nix index 3375a7a0a0bd..6d4233e043b1 100644 --- a/pkgs/development/python-modules/pytest-html/default.nix +++ b/pkgs/development/python-modules/pytest-html/default.nix @@ -11,12 +11,12 @@ }: let pname = "pytest-html"; - version = "4.0.2"; + version = "4.1.1"; src = fetchPypi { pname = "pytest_html"; inherit version; - hash = "sha256-iGgrno5ROSRyVGpwohObJ9a8GDSkr9PkHaM8nZ+R5KQ="; + hash = "sha256-cKAeiuWAD0oHS1akyxAlyPT5sDi7pf4x48mOuZZobwc="; }; web-assets = buildNpmPackage { No auto update branch exists Old version 4.0.2" not present in staging derivation file with contents: { lib , buildNpmPackage , buildPythonPackage , fetchPypi , pythonOlder , hatch-vcs , hatchling , jinja2 , pytest , pytest-metadata }: let pname = "pytest-html"; version = "4.1.1"; src = fetchPypi { pname = "pytest_html"; inherit version; hash = "sha256-cKAeiuWAD0oHS1akyxAlyPT5sDi7pf4x48mOuZZobwc="; }; web-assets = buildNpmPackage { pname = "${pname}-web-assets"; inherit version src; npmDepsHash = "sha256-aRod+SzVSb4bqEJzthfl/mH+DpbIe+j2+dNtrrhO2xU="; installPhase = '' runHook preInstall install -Dm644 src/pytest_html/resources/{app.js,style.css} -t $out/lib runHook postInstall ''; }; in buildPythonPackage { inherit pname version src; format = "pyproject"; disabled = pythonOlder "3.6"; nativeBuildInputs = [ hatch-vcs hatchling ]; buildInputs = [ pytest web-assets ]; propagatedBuildInputs = [ jinja2 pytest-metadata ]; env.HATCH_BUILD_NO_HOOKS = true; preBuild = '' install -Dm644 ${web-assets}/lib/{app.js,style.css} -t src/pytest_html/resources ''; # tests require network access doCheck = false; pythonImportsCheck = [ "pytest_html" ]; meta = with lib; { description = "Plugin for generating HTML reports"; homepage = "https://github.com/pytest-dev/pytest-html"; license = licenses.mpl20; maintainers = with maintainers; [ mpoquet ]; }; }