depot/third_party/nixpkgs/pkgs/development/python-modules/mkdocs-minify/default.nix
Default email 22017988c6 Project import generated by Copybara.
GitOrigin-RevId: c777cdf5c564015d5f63b09cc93bef4178b19b01
2022-04-27 11:35:20 +02:00

37 lines
752 B
Nix

{ lib
, callPackage
, buildPythonApplication
, fetchFromGitHub
, mkdocs
, csscompressor
, htmlmin
, jsmin
}:
buildPythonApplication rec {
pname = "mkdocs-minify";
version = "0.5.0";
src = fetchFromGitHub {
owner = "byrnereese";
repo = "${pname}-plugin";
rev = version;
sha256 = "sha256-7v4uX711KAKuXFeVdLuIdGQi2i+dL4WX7+Zd4H1L3lM=";
};
propagatedBuildInputs = [
csscompressor
htmlmin
jsmin
mkdocs
];
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 ];
};
}