nixpkgs/pkgs/development/python-modules/txaio/default.nix

35 lines
1015 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, pytest, mock, six, twisted }:
2017-04-26 13:25:02 +01:00
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "txaio";
2017-10-25 19:04:35 +01:00
version = "2.8.2";
2017-04-26 13:25:02 +01:00
src = fetchPypi {
inherit pname version;
2017-10-25 19:04:35 +01:00
sha256 = "484cd6c4cdd3f6081b87188f3b2b9a36e02fba6816e8256917c4f6571b567571";
};
2017-04-26 13:25:02 +01:00
buildInputs = [ pytest mock ];
2017-04-26 13:25:02 +01:00
propagatedBuildInputs = [ six twisted ];
patchPhase = ''
sed -i '152d' test/test_logging.py
'';
# test_chained_callback has been removed just post-2.7.1 because the functionality was decided against and the test
# breaks on python 3.6 https://github.com/crossbario/txaio/pull/104
2017-04-26 13:25:02 +01:00
checkPhase = ''
py.test -k "not (test_sdist or test_chained_callback)"
2017-04-26 13:25:02 +01:00
'';
meta = with stdenv.lib; {
description = "Utilities to support code that runs unmodified on Twisted and asyncio.";
homepage = "https://github.com/crossbario/txaio";
license = licenses.mit;
maintainers = with maintainers; [ nand0p ];
platforms = platforms.all;
};
}