nixpkgs/pkgs/development/python-modules/pyspf/default.nix

21 lines
552 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, pydns }:
buildPythonPackage rec {
pname = "pyspf";
2019-11-19 14:35:38 +00:00
version = "2.0.13"; # version 2.0.13 should not be used, see #72791
src = fetchPypi {
inherit pname version;
2019-11-19 14:35:38 +00:00
sha256 = "62dc1be39519e343202d480da7ef93d834b5a50cd4f217bef9335ed15292929b";
};
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;
};
}