python.pkgs.spambayes: 1.1b1 -> 1.1b2

This commit is contained in:
Joerg Thalheim 2017-10-07 22:25:21 +01:00
parent a08837622d
commit 58b6d3fdcb
2 changed files with 22 additions and 15 deletions

View File

@ -0,0 +1,21 @@
{ buildPythonPackage, isPy3k, fetchPypi, bsddb3, pydns, lockfile }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "spambayes";
version = "1.1b2";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "1542dwdsmkav38cfjlbgf3bzz3z8nk7wzq173ya8ipk7g8g6s64d";
};
propagatedBuildInputs = [ bsddb3 pydns lockfile ];
meta = {
description = "Statistical anti-spam filter, initially based on the work of Paul Graham";
homepage = http://spambayes.sourceforge.net/;
};
}

View File

@ -19829,21 +19829,7 @@ in {
};
};
spambayes = buildPythonPackage rec {
name = "spambayes-1.1b1";
src = pkgs.fetchurl {
url = "mirror://sourceforge/spambayes/${name}.tar.gz";
sha256 = "0kqvjb89b02wp41p650ydfspi1s8d7akx1igcrw62diidqbxp04n";
};
propagatedBuildInputs = with self; [ bsddb3 pydns lockfile ];
meta = {
description = "Statistical anti-spam filter, initially based on the work of Paul Graham";
homepage = http://spambayes.sourceforge.net/;
};
};
spambayes = callPackage ../development/python-modules/spambayes { };
shapely = callPackage ../development/python-modules/shapely { };