1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/autobahn/default.nix

31 lines
824 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, isPy3k,
six, txaio, twisted, zope_interface, cffi, trollius, futures,
mock, pytest
}:
buildPythonPackage rec {
pname = "autobahn";
2019-08-18 08:20:39 +01:00
version = "19.8.1";
src = fetchPypi {
inherit pname version;
2019-08-18 08:20:39 +01:00
sha256 = "294e7381dd54e73834354832604ae85567caf391c39363fed0ea2bfa86aa4304";
};
propagatedBuildInputs = [ six txaio twisted zope_interface cffi ] ++
(lib.optionals (!isPy3k) [ trollius futures ]);
checkInputs = [ mock pytest ];
checkPhase = ''
2018-09-01 10:57:31 +01:00
runHook preCheck
2018-06-12 17:46:58 +01:00
USE_TWISTED=true py.test $out
2018-09-01 10:57:31 +01:00
runHook postCheck
'';
meta = with lib; {
description = "WebSocket and WAMP in Python for Twisted and asyncio.";
homepage = "https://crossbar.io/autobahn";
license = licenses.mit;
maintainers = with maintainers; [ nand0p ];
};
}