aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/email-validator/default.nix
blob: 215584aa8cdbf5d5d9df02a3a0ce346c135fa9da (plain)
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
{ lib, buildPythonPackage, fetchPypi, isPy3k, dnspython, idna, ipaddress }:

buildPythonPackage rec {
  pname = "email_validator";
  version = "1.1.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "63094045c3e802c3d3d575b18b004a531c36243ca8d1cec785ff6bfcb04185bb";
  };

  doCheck = false;

  propagatedBuildInputs = [
    dnspython
    idna
  ] ++ (if isPy3k then [ ] else [ ipaddress ]);

  meta = with lib; {
    description = "A robust email syntax and deliverability validation library for Python 2.x/3.x.";
    homepage    = "https://github.com/JoshData/python-email-validator";
    license     = licenses.cc0;
    maintainers = with maintainers; [ siddharthist ];
    platforms   = platforms.unix;
  };
}