2019-05-23 05:23:41 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, isPy3k
|
2020-09-26 17:30:57 +01:00
|
|
|
, pytestCheckHook
|
2019-05-23 05:23:41 +01:00
|
|
|
, sphinx
|
2020-09-26 17:30:57 +01:00
|
|
|
, stdenv
|
2019-05-23 05:23:41 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "curio";
|
2020-06-06 07:47:02 +01:00
|
|
|
version = "1.2";
|
2019-05-23 05:23:41 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:47:02 +01:00
|
|
|
sha256 = "90f320fafb3f5b791f25ffafa7b561cc980376de173afd575a2114380de7939b";
|
2019-05-23 05:23:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
disabled = !isPy3k;
|
|
|
|
|
2020-09-26 17:30:57 +01:00
|
|
|
checkInputs = [ pytestCheckHook sphinx ];
|
2019-05-23 05:23:41 +01:00
|
|
|
|
2019-12-02 23:23:02 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2020-09-26 17:30:57 +01:00
|
|
|
disabledTests = [
|
|
|
|
"test_aside_basic" # times out
|
|
|
|
"test_aside_cancel" # fails because modifies PYTHONPATH and cant find pytest
|
|
|
|
"test_ssl_outgoing" # touches network
|
|
|
|
] ++ lib.optionals (stdenv.isDarwin) [
|
|
|
|
"test_unix_echo" # socket bind error on hydra when built with other packages
|
|
|
|
"test_unix_ssl_server" # socket bind error on hydra when built with other packages
|
|
|
|
];
|
2019-05-23 05:23:41 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/dabeaz/curio";
|
|
|
|
description = "Library for performing concurrent I/O with coroutines in Python 3";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.marsam ];
|
|
|
|
};
|
|
|
|
}
|