pythonPackages.tld: init at 0.9.3
This commit is contained in:
parent
3cf719f605
commit
688f61b018
22
pkgs/development/python-modules/tld/default.nix
Normal file
22
pkgs/development/python-modules/tld/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -5396,6 +5396,8 @@ in {
|
|||||||
|
|
||||||
textacy = callPackage ../development/python-modules/textacy { };
|
textacy = callPackage ../development/python-modules/textacy { };
|
||||||
|
|
||||||
|
tld = callPackage ../development/python-modules/tld { };
|
||||||
|
|
||||||
tldextract = callPackage ../development/python-modules/tldextract { };
|
tldextract = callPackage ../development/python-modules/tldextract { };
|
||||||
|
|
||||||
pyemd = callPackage ../development/python-modules/pyemd { };
|
pyemd = callPackage ../development/python-modules/pyemd { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user