b189247ba0
Uses the HTTPS url for cases where the existing URL has a permanent redirect. For each domain, at least one fixed derivation URL was downloaded to test the domain is properly serving downloads. Also fixes jbake source URL, which was broken.
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ stdenv, buildPythonPackage, fetchurl, isPy3k, isPy33,
|
|
unittest2, mock, pytest, trollius, asyncio,
|
|
pytest-asyncio, futures,
|
|
six, twisted, txaio, zope_interface
|
|
}:
|
|
buildPythonPackage rec {
|
|
name = "${pname}-${version}";
|
|
pname = "autobahn";
|
|
version = "17.9.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://pypi/a/${pname}/${name}.tar.gz";
|
|
sha256 = "206a3a579a580ca3ce2532ac12ec52d447135c9ace7c4bf6065b832a7cff25ba";
|
|
};
|
|
|
|
# Upstream claim python2 support, but tests require pytest-asyncio which
|
|
# is pythn3 only. Therefore, tests are skipped for python2.
|
|
doCheck = isPy3k;
|
|
buildInputs = stdenv.lib.optionals isPy3k [ unittest2 mock pytest pytest-asyncio ];
|
|
propagatedBuildInputs = [ six twisted zope_interface txaio ] ++
|
|
(stdenv.lib.optional isPy33 asyncio) ++
|
|
(stdenv.lib.optionals (!isPy3k) [ trollius futures ]);
|
|
|
|
checkPhase = ''
|
|
py.test $out
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "WebSocket and WAMP in Python for Twisted and asyncio.";
|
|
homepage = "https://crossbar.io/autobahn";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ nand0p ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|