pythonPackages.streamz: init at 0.5.0

This commit is contained in:
Chris Ostrouchov 2019-02-24 10:21:44 -05:00
parent 18fe630281
commit cf62881636
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,42 @@
{ lib
, buildPythonPackage
, fetchPypi
, tornado
, toolz
, zict
, six
, pytest
, networkx
, distributed
, confluent-kafka
, graphviz
}:
buildPythonPackage rec {
pname = "streamz";
version = "0.5.0";
src = fetchPypi {
inherit pname version;
sha256 = "cfdd42aa62df299f550768de5002ec83112136a34b44441db9d633b2df802fb4";
};
checkInputs = [ pytest networkx distributed confluent-kafka graphviz ];
propagatedBuildInputs = [
tornado
toolz
zict
six
];
checkPhase = ''
pytest
'';
meta = with lib; {
description = "Pipelines to manage continuous streams of data";
homepage = http://github.com/mrocklin/streamz/;
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -4168,6 +4168,8 @@ in {
statsmodels = callPackage ../development/python-modules/statsmodels { };
streamz = callPackage ../development/python-modules/streamz { };
structlog = callPackage ../development/python-modules/structlog { };
sybil = callPackage ../development/python-modules/sybil { };