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`.
25 lines
501 B
Nix
25 lines
501 B
Nix
{ lib
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "websockets";
|
|
version = "5.0.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "a49d315db5a7a19d55422e1678e8a1c3b9661d7296bef3179fa620cf80b12674";
|
|
};
|
|
|
|
disabled = pythonOlder "3.3";
|
|
doCheck = false; # protocol tests fail
|
|
|
|
meta = {
|
|
description = "WebSocket implementation in Python 3";
|
|
homepage = https://github.com/aaugustin/websockets;
|
|
license = lib.licenses.bsd3;
|
|
};
|
|
}
|