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`.
22 lines
487 B
Nix
22 lines
487 B
Nix
{ buildPythonPackage
|
|
, fetchPypi
|
|
, lib
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jsonrpclib-pelix";
|
|
version = "0.3.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1qs95vxplxwspbrqy8bvc195s58iy43qkf75yrjfql2sim8b25sl";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "JSON RPC client library - Pelix compatible fork";
|
|
homepage = https://pypi.python.org/pypi/jsonrpclib-pelix/;
|
|
license = lib.licenses.asl20;
|
|
maintainers = with maintainers; [ moredread ];
|
|
};
|
|
}
|