Files
Samiser 2ee0febae7 python3Packages.minify-html: fix build on darwin
maturin >= 1.13.0 doesn't add `-undefined dynamic_lookup` because
it finds the flags in minify-html-python/.cargo/config, but cargo
doesn't look there so neither system adds the flags.

see https://github.com/NixOS/nixpkgs/issues/541257 for more info
2026-07-13 15:31:10 +01:00

50 lines
1.2 KiB
Nix

{
buildPythonPackage,
fetchPypi,
lib,
rustPlatform,
}:
buildPythonPackage rec {
pname = "minify-html";
version = "0.18.1";
pyproject = true;
# Fetching from Pypi, because there is no Cargo.lock in the GitHub repo.
src = fetchPypi {
inherit version;
pname = "minify_html";
hash = "sha256-Q5mFMO9TdwHwA6jpCLdW147/MDyGsEGpWFXikFGLp5w=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src;
hash = "sha256-K0m+rM0dcosAOl5jYdh9CSRrL/Vuk1ATWHPQJbLxvRw=";
};
# The sdist's nested .cargo/config makes maturin >= 1.13.0 skip adding
# `-undefined dynamic_lookup` but cargo never reads it, dropping the flag
postPatch = ''
rm -r minify-html-python/.cargo
'';
nativeBuildInputs = with rustPlatform; [
cargoSetupHook
maturinBuildHook
];
pythonImportsCheck = [ "minify_html" ];
meta = {
description = "Extremely fast and smart HTML + JS + CSS minifier";
homepage = "https://github.com/wilsonzlin/minify-html/tree/master/minify-html-python";
changelog = "https://github.com/wilsonzlin/minify-html/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
DutchGerman
friedow
];
};
}