pythonPackages.sseclient: init at 0.0.19
This commit is contained in:
committed by
Robert Schütz
parent
2ca4e73fba
commit
91456c6705
24
pkgs/development/python-modules/sseclient/default.nix
Normal file
24
pkgs/development/python-modules/sseclient/default.nix
Normal file
@@ -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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user