about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyspf/default.nix
blob: 6903b6c7a0c048d01646872e7fdc307feb86a576 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildPythonPackage, fetchurl, pydns }:

buildPythonPackage rec {
  name = "pyspf-${version}";
  version = "2.0.12";

  src = fetchurl {
    url = "mirror://sourceforge/pymilter/pyspf/${name}/${name}.tar.gz";
    sha256 = "18j1rmbmhih7q6y12grcj169q7sx1986qn4gmpla9y5gwfh1p8la";
  };

  propagatedBuildInputs = [ pydns ];

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