1 { lib, buildPythonPackage, fetchPypi, isPy27
3 , backports_unittest-mock, pytestCheckHook, pytestrunner }:
5 buildPythonPackage rec {
10 inherit pname version;
11 sha256 = "b2fe534dcb33b1d3faad13d60c5a7c718e28f85987f2a034ecf5ec279918c11c";
14 propagatedBuildInputs = [ requests six ];
16 # some tests use python3 strings
18 checkInputs = [ backports_unittest-mock pytestCheckHook pytestrunner ];
20 # tries to open connection to wikipedia
21 disabledTests = [ "event_stream" ];
24 description = "Client library for reading Server Sent Event streams";
25 homepage = "https://github.com/btubbs/sseclient";
26 license = licenses.mit;
27 maintainers = with maintainers; [ peterhoeg ];