2018-06-23 14:27:58 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pydns }:
|
2018-02-25 17:22:45 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-06-23 14:27:58 +01:00
|
|
|
pname = "pyspf";
|
2018-02-25 17:22:45 +00:00
|
|
|
version = "2.0.12";
|
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-02-25 17:22:45 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|