pythonPackages.txaio: init at 2.5.1

Tested on Linux
Tested on Darwin
This commit is contained in:
Fernando J Pando 2016-08-18 10:56:36 -04:00 committed by Frederik Rietdijk
parent 70f55f9930
commit 17278243d8

View file

@ -29421,6 +29421,32 @@ in modules // {
'';
};
txaio = buildPythonPackage rec {
name = "${pname}-${version}";
pname = "txaio";
version = "2.5.1";
meta = {
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;
};
buildInputs = with self; [ pytest mock ];
propagatedBuildInputs = with self; [ six twisted ];
checkPhase = ''
py.test -k "not test_sdist"
'';
src = pkgs.fetchurl {
url = "mirror://pypi/t/${pname}/${name}.tar.gz";
sha256 = "1pni1m66mlmbybmaf3py4h7cpkmkssqb5l3rigkxvql2f53pcl32";
};
};
yapf = buildPythonPackage rec {
name = "yapf-${version}";
version = "0.11.0";