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`.
27 lines
543 B
Nix
27 lines
543 B
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, mozlog
|
|
, mozinfo
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "moznetwork";
|
|
version = "0.27";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "09ypx5wif0mly6fk3491nlzg8whg6qw24x7h9w70hykdqindbh2s";
|
|
};
|
|
|
|
propagatedBuildInputs = [ mozlog mozinfo ];
|
|
|
|
meta = {
|
|
description = "Network utilities for Mozilla testing";
|
|
homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase;
|
|
license = lib.licenses.mpl20;
|
|
maintainers = with lib.maintainers; [ raskin ];
|
|
};
|
|
}
|