pythonPackages: remove name attribute`
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`.
This commit is contained in:
@@ -1,13 +1,12 @@
|
||||
{ stdenv, buildPythonPackage, isPy3k, fetchurl, xmpppy }:
|
||||
{ stdenv, buildPythonPackage, isPy3k, fetchPypi, xmpppy }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jabberbot";
|
||||
version = "0.16";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
disabled = isPy3k;
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/j/jabberbot/${name}.tar.gz";
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1qr7c5p9a0nzsvri1djnd5r3d7ilh2mdxvviqn1s2hcc70rha65d";
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user