Files
nixpkgs/pkgs/development/python-modules/spambayes/default.nix
R. RyanTM e17cb15e73 python27Packages.spambayes: 1.1b2 -> 1.1b3 (#52080)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python2.7-spambayes/versions
2018-12-14 19:21:30 +01:00

21 lines
499 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/;
};
}