about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pyspf/default.nix
blob: 74e264b9da092baea6116d3a0c5046f03617a93e (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
{ lib, python, buildPythonPackage, fetchFromGitHub, pydns }:

buildPythonPackage rec {
  pname = "pyspf";
  version = "2.0.14";

  src = fetchFromGitHub {
    owner = "sdgathman";
    repo = pname;
    rev = "pyspf-${version}";
    sha256 = "0bmimlmwrq9glnjc4i6pwch30n3y5wyqmkjfyayxqxkfrixqwydi";
  };

  propagatedBuildInputs = [ pydns ];

  # requires /etc/resolv.conf to exist
  doCheck = false;

  meta = with lib; {
    homepage = "http://bmsi.com/python/milter.html";
    description = "Python API for Sendmail Milters (SPF)";
    maintainers = with maintainers; [ abbradar ];
    license = licenses.gpl2;
  };
}