nixpkgs/pkgs/development/python-modules/spambayes/default.nix
2020-04-10 17:54:53 +01:00

21 lines
501 B
Nix

{ buildPythonPackage, isPy3k, fetchPypi, bsddb3, pydns, lockfile }:
buildPythonPackage rec {
pname = "spambayes";
version = "1.1b3";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "016r3g43ja73rls1nh1dl82d75lgsjdl4cv2r5s7zcihm47nb38q";
};
propagatedBuildInputs = [ bsddb3 pydns lockfile ];
meta = {
description = "Statistical anti-spam filter, initially based on the work of Paul Graham";
homepage = "http://spambayes.sourceforge.net/";
};
}