pythonPackages.tld: init at 0.9.3

This commit is contained in:
Bignaux Ronan 2019-05-01 23:29:34 +02:00
parent 3cf719f605
commit 688f61b018
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, fetchPypi, buildPythonPackage, six }:
buildPythonPackage rec {
pname = "tld";
version = "0.9.3";
src = fetchPypi {
inherit pname version;
sha256 = "0i0prgwrmm157h6fa5bx9wm0m70qq2nhzp743374a94p9s766rpp";
};
doCheck = false;
propagatedBuildInputs = [ six ];
meta = with stdenv.lib; {
homepage = https://github.com/barseghyanartur/tld;
description = "Extracts the top level domain (TLD) from the URL given";
license = licenses.lgpl21;
maintainers = with maintainers; [ genesis ];
};
}

View File

@ -5396,6 +5396,8 @@ in {
textacy = callPackage ../development/python-modules/textacy { };
tld = callPackage ../development/python-modules/tld { };
tldextract = callPackage ../development/python-modules/tldextract { };
pyemd = callPackage ../development/python-modules/pyemd { };