Files
nixpkgs/pkgs/development/python-modules/autobahn/default.nix
T

32 lines
878 B
Nix
Raw Normal View History

2018-08-31 13:11:24 -04:00
{ lib, buildPythonPackage, fetchPypi, isPy3k, isPy33,
six, txaio, twisted, zope_interface, cffi, asyncio, trollius, futures,
mock, pytest
2017-04-26 14:30:04 +02:00
}:
buildPythonPackage rec {
pname = "autobahn";
2018-08-25 07:42:44 +02:00
version = "18.8.1";
2017-04-26 14:30:04 +02:00
2018-06-23 15:27:58 +02:00
src = fetchPypi {
inherit pname version;
2018-08-25 07:42:44 +02:00
sha256 = "b69858e0be4bff8437b0bd82a0db1cbef7405e16bd9354ba587c043d6d5e1ad9";
2017-04-26 14:30:04 +02:00
};
2018-08-31 13:11:24 -04:00
propagatedBuildInputs = [ six txaio twisted zope_interface cffi ] ++
(lib.optional isPy33 asyncio) ++
(lib.optionals (!isPy3k) [ trollius futures ]);
2017-04-26 14:30:04 +02:00
2018-08-31 13:11:24 -04:00
checkInputs = [ mock pytest ];
2017-04-26 14:30:04 +02:00
checkPhase = ''
2018-09-01 11:57:31 +02:00
runHook preCheck
2018-06-12 18:46:58 +02:00
USE_TWISTED=true py.test $out
2018-09-01 11:57:31 +02:00
runHook postCheck
2017-04-26 14:30:04 +02:00
'';
2018-08-31 13:11:24 -04:00
meta = with lib; {
2017-04-26 14:30:04 +02:00
description = "WebSocket and WAMP in Python for Twisted and asyncio.";
2018-03-24 22:04:25 -07:00
homepage = "https://crossbar.io/autobahn";
2017-04-26 14:30:04 +02:00
license = licenses.mit;
maintainers = with maintainers; [ nand0p ];
};
}