python3Packages.streamz: 0.5.2 -> 0.5.4
This commit is contained in:
parent
a3b66fa656
commit
f6988ba81b
|
@ -1,38 +1,26 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, fetchpatch
|
{ lib, buildPythonPackage, fetchPypi, fetchpatch
|
||||||
, tornado
|
|
||||||
, toolz
|
|
||||||
, zict
|
|
||||||
, six
|
|
||||||
, pytest
|
|
||||||
, networkx
|
|
||||||
, distributed
|
|
||||||
, confluent-kafka
|
, confluent-kafka
|
||||||
|
, distributed
|
||||||
|
, flaky
|
||||||
, graphviz
|
, graphviz
|
||||||
|
, networkx
|
||||||
|
, pytest
|
||||||
, requests
|
, requests
|
||||||
|
, six
|
||||||
|
, toolz
|
||||||
|
, tornado
|
||||||
|
, zict
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "streamz";
|
pname = "streamz";
|
||||||
version = "0.5.2";
|
version = "0.5.4";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "127rpdjgkcyjifmkqbhmqfbzlgi32n54rybrdxja610qr906y40c";
|
sha256 = "1vzmwnj12ij0cqhggys2dqv3b0v935yfzhcjwl5jw206vlla22bw";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
|
||||||
# fix networkx rename issue of GiGraph.node -> DiGraph.nodes, remove on next bump
|
|
||||||
( fetchpatch {
|
|
||||||
url = "https://github.com/python-streamz/streamz/commit/f8b7bdb6bcb9dd107677e82e755ff4695bf0c4be.patch";
|
|
||||||
sha256 = "1b2frp0j369gf55plxk2pigblhsc44m0rm9az01y83cjlcm26x2s";
|
|
||||||
})
|
|
||||||
# also, fix networkx rename issue of GiGraph.node -> DiGraph.nodes, remove on next bump
|
|
||||||
( fetchpatch {
|
|
||||||
url = "https://github.com/python-streamz/streamz/commit/f7603f4cbea54f1548885881206a3ca9d6e52250.patch";
|
|
||||||
sha256 = "1125kqiaz6b3cifz0yk1zrkxj5804lfzl4kc58jhqajv8rsrbs45";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
networkx
|
networkx
|
||||||
tornado
|
tornado
|
||||||
|
@ -44,6 +32,7 @@ buildPythonPackage rec {
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
confluent-kafka
|
confluent-kafka
|
||||||
distributed
|
distributed
|
||||||
|
flaky
|
||||||
graphviz
|
graphviz
|
||||||
pytest
|
pytest
|
||||||
requests
|
requests
|
||||||
|
|
Loading…
Reference in New Issue