pythonPackages.html5-parser: init at 0.4.3
This commit is contained in:
committed by
Frederik Rietdijk
parent
817fdff7d4
commit
791e440817
@@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi, pkgs, pkgconfig, chardet, lxml }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "html5-parser";
|
||||||
|
version = "0.4.3";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "173vzg214x7qfq201m4b09wg5nszdgwjw5q02v23k54iqm3kcpnx";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig ];
|
||||||
|
propagatedBuildInputs = [ chardet lxml pkgs.libxml2 ];
|
||||||
|
|
||||||
|
doCheck = false; # No such file or directory: 'run_tests.py'
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Fast C based HTML 5 parsing for python";
|
||||||
|
homepage = https://html5-parser.readthedocs.io;
|
||||||
|
license = licenses.asl20;
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -2085,6 +2085,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
html5-parser = callPackage ../development/python-modules/html5-parser {};
|
||||||
|
|
||||||
httpserver = callPackage ../development/python-modules/httpserver {};
|
httpserver = callPackage ../development/python-modules/httpserver {};
|
||||||
|
|
||||||
bleach = buildPythonPackage rec {
|
bleach = buildPythonPackage rec {
|
||||||
|
|||||||
Reference in New Issue
Block a user