linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / tld / default.nix
blob13f23edaad152bb2511d47823d01259d20292d51
1 { lib
2 , buildPythonPackage
3 , factory_boy
4 , faker
5 , fetchPypi
6 , pytest-cov
7 , pytestCheckHook
8 , six
9 , tox
12 buildPythonPackage rec {
13   pname = "tld";
14   version = "0.12.5";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "0d1lbbg2qdw5jjxks0dqlf69bki5885mhj8ysvgylmrni56hjqqv";
19   };
21   checkInputs = [
22     factory_boy
23     faker
24     pytest-cov
25     pytestCheckHook
26     tox
27   ];
29   pythonImportsCheck = [ "tld" ];
31   meta = with lib; {
32     homepage = "https://github.com/barseghyanartur/tld";
33     description = "Extracts the top level domain (TLD) from the URL given";
34     # https://github.com/barseghyanartur/tld/blob/master/README.rst#license
35     # MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-or-later
36     license = with licenses; [ lgpl21Plus mpl11 gpl2Only ];
37     maintainers = with maintainers; [ fab ];
38   };