7 python3.pkgs.buildPythonApplication rec {
8 pname = "html5validator";
10 format = "setuptools";
12 src = fetchFromGitHub {
14 repo = "html5validator";
15 rev = "refs/tags/v${version}";
16 hash = "sha256-yvclqE4+2R9q/UJU9W95U1/xVJeNj+5eKvT6VQel9k8=";
19 propagatedBuildInputs = [
21 ] ++ (with python3.pkgs; [
25 nativeCheckInputs = with python3.pkgs; [
31 export PATH="$PATH:$out/bin";
35 description = "Command line tool that tests files for HTML5 validity";
36 mainProgram = "html5validator";
37 homepage = "https://github.com/svenkreiss/html5validator";
38 changelog = "https://github.com/svenkreiss/html5validator/releases/tag/v${version}";
39 license = licenses.mit;
40 maintainers = with maintainers; [ phunehehe ];