ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
21 lines
499 B
Nix
21 lines
499 B
Nix
{ buildPythonPackage, isPy3k, fetchPypi, bsddb3, pydns, lockfile }:
|
|
|
|
buildPythonPackage rec {
|
|
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/;
|
|
};
|
|
}
|