mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-16 21:10:25 +08:00
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
44 lines
838 B
Nix
44 lines
838 B
Nix
{ lib
|
|
, callPackage
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, mkdocs
|
|
, csscompressor
|
|
, htmlmin
|
|
, jsmin
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mkdocs-minify";
|
|
version = "0.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "byrnereese";
|
|
repo = "${pname}-plugin";
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "sha256-ABoLt5sFpt8Hm07tkqeAcs63ZvJ4vTbGw4QRYVYpMEA=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
csscompressor
|
|
htmlmin
|
|
jsmin
|
|
mkdocs
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
mkdocs
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "mkdocs" ];
|
|
|
|
meta = with lib; {
|
|
description = "A mkdocs plugin to minify the HTML of a page before it is written to disk.";
|
|
homepage = "https://github.com/byrnereese/mkdocs-minify-plugin";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ tfc ];
|
|
};
|
|
}
|