Skip to content

Commit

Permalink
pythonPackages.sseclient: init at 0.0.19
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhoeg authored and Robert Schütz committed Mar 4, 2018
1 parent 2ca4e73 commit 91456c6
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/development/python-modules/sseclient/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ stdenv, buildPythonPackage, fetchPypi
, requests, six
, backports_unittest-mock, pluggy, pytest, pytestrunner }:

buildPythonPackage rec {
pname = "sseclient";
version = "0.0.19";

src = fetchPypi {
inherit pname version;
sha256 = "7a2ea3f4c8525ae9a677bc8193df5db88e23bcaafcc34938a1ee665975703a9f";
};

propagatedBuildInputs = [ requests six ];

checkInputs = [ backports_unittest-mock pytest pytestrunner ];

meta = with stdenv.lib; {
description = "Client library for reading Server Sent Event streams";
homepage = https://github.com/btubbs/sseclient;
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21173,6 +21173,8 @@ EOF

spacy_models = callPackage ../development/python-modules/spacy/models.nix { };

sseclient = callPackage ../development/python-modules/sseclient { };

textacy = callPackage ../development/python-modules/textacy { };

pyemd = callPackage ../development/python-modules/pyemd { };
Expand Down

0 comments on commit 91456c6

Please sign in to comment.