83 lines
1.3 KiB
Nix
83 lines
1.3 KiB
Nix
{ lib
|
|
, argon2_cffi
|
|
, buildPythonPackage
|
|
, cbor
|
|
, cbor2
|
|
, cffi
|
|
, cryptography
|
|
, fetchPypi
|
|
, flatbuffers
|
|
, mock
|
|
, msgpack
|
|
, passlib
|
|
, pynacl
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, twisted
|
|
, py-ubjson
|
|
, txaio
|
|
, ujson
|
|
, zope_interface
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "autobahn";
|
|
version = "21.11.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-vW9GMVQZygpb5BCfc3QQIIrV8ZcY9nympKZ0zGbKmxg=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
argon2_cffi
|
|
cbor
|
|
cbor2
|
|
cffi
|
|
cryptography
|
|
flatbuffers
|
|
msgpack
|
|
passlib
|
|
py-ubjson
|
|
pynacl
|
|
twisted
|
|
txaio
|
|
ujson
|
|
zope_interface
|
|
];
|
|
|
|
checkInputs = [
|
|
mock
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "pytest>=2.8.6,<3.3.0" "pytest"
|
|
'';
|
|
|
|
preCheck = ''
|
|
# Run asyncio tests (requires twisted)
|
|
export USE_ASYNCIO=1
|
|
'';
|
|
|
|
pytestFlagsArray = [
|
|
"--pyargs autobahn"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"autobahn"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "WebSocket and WAMP in Python for Twisted and asyncio";
|
|
homepage = "https://crossbar.io/autobahn";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|