11 buildPythonPackage rec {
12 pname = "mkdocs-minify";
15 src = fetchFromGitHub {
17 repo = "${pname}-plugin";
18 rev = "refs/tags/${version}";
19 hash = "sha256-LDCAWKVbFsa6Y/tmY2Zne4nOtxe4KvNplZuWxg4e4L8=";
22 propagatedBuildInputs = [
34 # Some tests fail with an assertion error failure
37 pythonImportsCheck = [ "mkdocs" ];
40 description = "A mkdocs plugin to minify the HTML of a page before it is written to disk.";
41 homepage = "https://github.com/byrnereese/mkdocs-minify-plugin";
42 license = licenses.mit;
43 maintainers = with maintainers; [ tfc ];