nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

pythonPackages.sseclient: init at 0.0.19

(cherry picked from commit 91456c67059e7921fb2c255a210fcf0fac50efdb)

+26
+24
pkgs/development/python-modules/sseclient/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi 2 + , requests, six 3 + , backports_unittest-mock, pluggy, pytest, pytestrunner }: 4 + 5 + buildPythonPackage rec { 6 + pname = "sseclient"; 7 + version = "0.0.19"; 8 + 9 + src = fetchPypi { 10 + inherit pname version; 11 + sha256 = "7a2ea3f4c8525ae9a677bc8193df5db88e23bcaafcc34938a1ee665975703a9f"; 12 + }; 13 + 14 + propagatedBuildInputs = [ requests six ]; 15 + 16 + checkInputs = [ backports_unittest-mock pytest pytestrunner ]; 17 + 18 + meta = with stdenv.lib; { 19 + description = "Client library for reading Server Sent Event streams"; 20 + homepage = https://github.com/btubbs/sseclient; 21 + license = licenses.mit; 22 + maintainers = with maintainers; [ peterhoeg ]; 23 + }; 24 + }
+2
pkgs/top-level/python-packages.nix
··· 20479 20479 20480 20480 spacy_models = callPackage ../development/python-modules/spacy/models.nix { }; 20481 20481 20482 + sseclient = callPackage ../development/python-modules/sseclient { }; 20483 + 20482 20484 textacy = callPackage ../development/python-modules/textacy { }; 20483 20485 20484 20486 pyemd = callPackage ../development/python-modules/pyemd { };