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

41 lines
1.0 KiB
Nix
Raw Normal View History

2019-05-23 05:23:41 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, pytestCheckHook
2019-05-23 05:23:41 +01:00
, sphinx
, stdenv
2019-05-23 05:23:41 +01:00
}:
buildPythonPackage rec {
pname = "curio";
2020-11-29 14:04:26 +00:00
version = "1.4";
2019-05-23 05:23:41 +01:00
src = fetchPypi {
inherit pname version;
2020-11-29 14:04:26 +00:00
sha256 = "57edce81c837f3c2cf42fbb346dee26e537d1659e6605269fb13bd179e068744";
2019-05-23 05:23:41 +01:00
};
disabled = !isPy3k;
checkInputs = [ pytestCheckHook sphinx ];
2019-05-23 05:23:41 +01:00
__darwinAllowLocalNetworking = true;
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 ];
};
}