Commit ba53e708 authored by Fabian Affolter's avatar Fabian Affolter
Browse files
parent d2d8db8c
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -8,14 +8,14 @@

buildPythonPackage rec {
  pname = "html-text";
  version = "0.5.2";
  version = "0.6.2";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "TeamHG-Memex";
    owner = "zytedata";
    repo = "html-text";
    rev = version;
    hash = "sha256-jw/hpz0QfcgP5OEJcmre0h1OzOfpPtaROxHm+YUqces=";
    rev = "refs/tags/${version}";
    hash = "sha256-e9gkibQv8mn1Jbt77UmpauOeTqhJQhY9R5Sge/iYi+U=";
  };

  propagatedBuildInputs = [
@@ -31,7 +31,8 @@ buildPythonPackage rec {

  meta = with lib; {
    description = "Extract text from HTML";
    homepage = "https://github.com/TeamHG-Memex/html-text";
    homepage = "https://github.com/zytedata/html-text";
    changelog = "https://github.com/zytedata/html-text/blob/${version}/CHANGES.rst";
    license = licenses.mit;
    maintainers = with maintainers; [ ambroisie ];
  };