tailscale: build derpprobe (#364918)
[NixPkgs.git] / pkgs / development / python-modules / tlds / default.nix
blob3d58e0c755b3244285fac54ad7f8a10ed026946a
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   nix-update-script,
7 }:
9 buildPythonPackage rec {
10   pname = "tlds";
11   version = "2024092600";
12   pyproject = true;
14   src = fetchFromGitHub {
15     owner = "kichik";
16     repo = "tlds";
17     rev = "refs/tags/${version}";
18     hash = "sha256-ybqC0FUrTyTO2UfS/bCAUdzKtcK06wTeLv1Mv/R8RS0=";
19   };
21   nativeBuildInputs = [ setuptools ];
23   pythonImportsCheck = [ "tlds" ];
25   # no tests
26   doCheck = false;
28   passthru.updateScript = nix-update-script { };
30   meta = with lib; {
31     description = "Automatically updated list of valid TLDs taken directly from IANA";
32     homepage = "https://github.com/kichik/tlds";
33     license = licenses.mit;
34     maintainers = with maintainers; [ hexa ];
35   };