python-html2text: add package

This commit is contained in:
Sander van der Burg 2015-01-26 10:31:07 +00:00
parent 42bd43fbc4
commit 86f635aad8
2 changed files with 19 additions and 0 deletions

View file

@ -144,5 +144,7 @@
},
{ "name": "suds",
"doCheck": false
},
{ "name": "html2text"
}
]

View file

@ -13269,5 +13269,22 @@ let
license = licenses.mit;
};
};
html2text = buildPythonPackage rec {
name = "html2text-2014.12.29";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/h/html2text/html2text-2014.12.29.tar.gz";
md5 = "c5bd796bdf7d1bfa43f55f1e2b5e4826";
};
propagatedBuildInputs = with pythonPackages; [ ];
meta = with stdenv.lib; {
description = "# html2text";
homepage = https://github.com/Alir3z4/html2text/;
license = unknown;
};
};
}); in pythonPackages