summary refs log tree commit diff
path: root/pkgs/development/python-modules/publicsuffix2/default.nix
blob: fe360168aa5ab45137271929a4a6125b1e765014 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, buildPythonPackage, fetchFromGitHub, requests }:

buildPythonPackage rec {
  pname = "publicsuffix2";
  version = "2.20191221";

  # Tests are missing in the sdist
  # See: https://github.com/nexB/python-publicsuffix2/issues/12
  src = fetchFromGitHub {
    owner = "nexB";
    repo = "python-publicsuffix2";
    rev = "release-2.2019-12-21";
    sha256 = "1dkvfvl0izq9hqzilnw8ipkbgjs9xyad9p21i3864hzinbh0wp9r";
  };

  nativeBuildInputs = [ requests ];

  meta = with stdenv.lib; {
    description = ''
      Get a public suffix for a domain name using the Public Suffix
      List. Forked from and using the same API as the publicsuffix package.
    '';
    homepage = "https://pypi.python.org/pypi/publicsuffix2/";
    license = licenses.mpl20;
  };
}