Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e3930fd4165b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fb2ea4fa6a11
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Sep 29, 2019

  1. pythonPackages.streamz: 0.5.1 -> 0.5.2

    (cherry picked from commit 8d306d5)
    Jonathan Ringer authored and marsam committed Sep 29, 2019
    Copy the full SHA
    fb2ea4f View commit details
Showing with 14 additions and 5 deletions.
  1. +14 −5 pkgs/development/python-modules/streamz/default.nix
19 changes: 14 additions & 5 deletions pkgs/development/python-modules/streamz/default.nix
Original file line number Diff line number Diff line change
@@ -5,30 +5,39 @@
, toolz
, zict
, six
, pytest
, pytest_4
, networkx
, distributed
, confluent-kafka
, graphviz
, requests
}:

buildPythonPackage rec {
pname = "streamz";
version = "0.5.1";
version = "0.5.2";

src = fetchPypi {
inherit pname version;
sha256 = "80c9ded1d6e68d3b78339deb6e9baf93a633d84b4a8875221e337ac06890103f";
sha256 = "127rpdjgkcyjifmkqbhmqfbzlgi32n54rybrdxja610qr906y40c";
};

checkInputs = [ pytest networkx distributed confluent-kafka graphviz ];
propagatedBuildInputs = [
tornado
toolz
zict
six
];

checkInputs = [
confluent-kafka
distributed
graphviz
networkx
pytest_4
requests
];

# Disable test_tcp_async because fails on sandbox build
checkPhase = ''
pytest --deselect=streamz/tests/test_sources.py::test_tcp_async \
@@ -37,7 +46,7 @@ buildPythonPackage rec {

meta = with lib; {
description = "Pipelines to manage continuous streams of data";
homepage = https://github.com/mrocklin/streamz/;
homepage = "https://github.com/mrocklin/streamz";
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};