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

56 lines
1 KiB
Nix
Raw Permalink Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, mock
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, six
, twisted
, zope_interface
}:
2017-04-26 12:25:02 +00:00
buildPythonPackage rec {
pname = "txaio";
version = "21.2.1";
disabled = pythonOlder "3.7";
2017-04-26 12:25:02 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-fW+JdFaAIz8cTbndt0jfXojSp6N5Yr4XTA/QTI26Hcg=";
};
propagatedBuildInputs = [
six
twisted
zope_interface
];
checkInputs = [
mock
pytest-asyncio
pytestCheckHook
];
2017-04-26 12:25:02 +00:00
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"
];
2017-04-26 12:25:02 +00:00
pythonImportsCheck = [ "txaio" ];
2018-10-24 08:46:43 +00:00
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; [ ];
2017-04-26 12:25:02 +00:00
};
}