depot/third_party/nixpkgs/pkgs/development/python-modules/txaio/default.nix
Default email bb584b27e9 Project import generated by Copybara.
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
2022-04-15 03:41:22 +02:00

55 lines
1 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, mock
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, six
, twisted
, zope_interface
}:
buildPythonPackage rec {
pname = "txaio";
version = "22.2.1";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-LkWCtw8EsjRZCCVGhKmEIGwNm1DjB0okpMVauiHSTQE=";
};
propagatedBuildInputs = [
six
twisted
zope_interface
];
checkInputs = [
mock
pytest-asyncio
pytestCheckHook
];
disabledTests = [
# No real value
"test_sdist"
# Some tests seems out-dated and require additional data
"test_as_future"
"test_errback"
"test_create_future"
"test_callback"
"test_immediate_result"
"test_cancel"
];
pythonImportsCheck = [ "txaio" ];
meta = with 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; [ ];
};
}