linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / html2text / 2018.nix
blob06d0c14c7e4358ddc48b3b52cea12aa968395906
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "html2text";
8   version = "2018.1.9";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "627514fb30e7566b37be6900df26c2c78a030cc9e6211bda604d8181233bcdd4";
13   };
15   meta = with lib; {
16     description = "Turn HTML into equivalent Markdown-structured text";
17     homepage = "https://github.com/Alir3z4/html2text/";
18     license = licenses.gpl3;
19   };