mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python-html2text: add package
This commit is contained in:
parent
42bd43fbc4
commit
86f635aad8
2 changed files with 19 additions and 0 deletions
|
@ -144,5 +144,7 @@
|
|||
},
|
||||
{ "name": "suds",
|
||||
"doCheck": false
|
||||
},
|
||||
{ "name": "html2text"
|
||||
}
|
||||
]
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue