Files
nixpkgs/pkgs/development/python-modules/html2image/default.nix
T
Martin Weinelt bccdc437dc python3Packages.html2image: 2.0.5 -> 2.0.7
https://github.com/vgalin/html2image/releases/tag/2.0.7

This commit was automatically generated using update-python-libraries.
2025-08-09 18:59:50 +02:00

45 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
requests,
websocket-client,
}:
buildPythonPackage rec {
pname = "html2image";
version = "2.0.7";
pyproject = true;
src = fetchFromGitHub {
owner = "vgalin";
repo = "html2image";
tag = version;
hash = "sha256-qGp6i4fNmduTZfdxNvYJTAQV/Ovm3XFNOJ8uSj6Ipic=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail poetry.masonry.api poetry.core.masonry.api \
--replace-fail "poetry>=" "poetry-core>="
'';
build-system = [ poetry-core ];
dependencies = [
requests
websocket-client
];
pythonImportsCheck = [ "html2image" ];
meta = with lib; {
description = "Package acting as a wrapper around the headless mode of existing web browsers to generate images from URLs and from HTML+CSS strings or files";
homepage = "https://github.com/vgalin/html2image";
changelog = "https://github.com/vgalin/html2image/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ happysalada ];
};
}