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

21 lines
492 B
Nix
Raw Normal View History

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