nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 35 lines 672 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pytestCheckHook, 6 requests, 7 six, 8}: 9 10buildPythonPackage rec { 11 pname = "sseclient"; 12 version = "0.0.27"; 13 format = "setuptools"; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-sv5TTcszsdP6rRPWDFp8cY4o+FmH8qA07PXsJ5kYwRw="; 18 }; 19 20 propagatedBuildInputs = [ 21 requests 22 six 23 ]; 24 25 nativeCheckInputs = [ pytestCheckHook ]; 26 27 disabledTests = [ "event_stream" ]; 28 29 meta = { 30 description = "Client library for reading Server Sent Event streams"; 31 homepage = "https://github.com/btubbs/sseclient"; 32 license = lib.licenses.mit; 33 maintainers = with lib.maintainers; [ peterhoeg ]; 34 }; 35}