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

45 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";
2021-07-03 11:30:23 +01:00
version = "1.5";
disabled = !isPy3k;
2019-05-23 05:23:41 +01:00
src = fetchPypi {
inherit pname version;
2021-07-03 11:30:23 +01:00
sha256 = "sha256-rwghLlkLt9qOTMOcQgEnEUlNwg1iLxYhVbopbMLjvBA=";
2019-05-23 05:23:41 +01:00
};
2021-07-03 11:30:23 +01:00
checkInputs = [
pytestCheckHook
sphinx
];
__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
2021-07-03 11:30:23 +01:00
pythonImportsCheck = [ "curio" ];
2019-05-23 05:23:41 +01:00
meta = with lib; {
homepage = "https://github.com/dabeaz/curio";
2021-07-03 11:30:23 +01:00
description = "Library for performing concurrent I/O with coroutines in Python";
2019-05-23 05:23:41 +01:00
license = licenses.bsd3;
maintainers = [ maintainers.marsam ];
};
}