nixpkgs/pkgs/development/python-modules/pytest-html/default.nix
Michael Daniels 075e8c2c4f
treewide: change 'format = "pyproject";' to 'pyproject = true;'
This is almost all find-and-replace.

I manually edited:
* pkgs/development/python-modules/notifications-android-tv/default.nix,
* pkgs/servers/home-assistant/default.nix,
* pkgs/development/tools/continuous-integration/buildbot/master.nix

A few files have not been changed in this PR because they would cause rebuilds.

This PR should have 0 rebuilds.
2026-01-12 17:50:35 -05:00

72 lines
1.3 KiB
Nix

{
lib,
buildNpmPackage,
buildPythonPackage,
fetchPypi,
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;
pyproject = true;
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 = {
description = "Plugin for generating HTML reports";
homepage = "https://github.com/pytest-dev/pytest-html";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ mpoquet ];
};
}