nixpkgs/pkgs/development/python-modules/tld/default.nix

40 lines
934 B
Nix
Raw Normal View History

2019-05-01 21:56:49 +00:00
{ stdenv, fetchPypi, python }:
2019-05-01 21:29:34 +00:00
2019-05-01 21:56:49 +00:00
python.pkgs.buildPythonPackage rec {
2019-05-01 21:29:34 +00:00
pname = "tld";
version = "0.9.6";
2019-05-01 21:29:34 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0figmf80y715zv6viqan2nyzpg9aia5dyl25nskirpm5lh1s99w9";
2019-05-01 21:29:34 +00:00
};
2019-05-01 21:56:49 +00:00
propagatedBuildInputs = with python.pkgs; [ six ];
checkInputs = with python.pkgs; [ factory_boy faker pytestcov tox pytestCheckHook];
2019-05-01 21:56:49 +00:00
# https://github.com/barseghyanartur/tld/issues/54
disabledTests = [
2019-05-01 21:56:49 +00:00
"test_1_update_tld_names"
"test_1_update_tld_names_command"
"test_2_update_tld_names_module"
];
2019-05-01 21:56:49 +00:00
preCheck = ''
export PATH="$PATH:$out/bin"
2019-05-01 21:56:49 +00:00
'';
2019-05-01 21:29:34 +00:00
dontUseSetuptoolsCheck = true;
pythonImportsCheck = [
"tld"
];
2019-05-01 21:29:34 +00:00
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 ];
};
}