python27Packages.kafka-python: 1.4.7 -> 2.0.1

This commit is contained in:
R. RyanTM 2020-05-09 03:23:46 +00:00 committed by Jon
parent 762efd1987
commit 23be01d6ab

View File

@ -1,12 +1,12 @@
{ stdenv, buildPythonPackage, fetchPypi, pytest, six, mock }:
buildPythonPackage rec {
version = "1.4.7";
version = "2.0.1";
pname = "kafka-python";
src = fetchPypi {
inherit pname version;
sha256 = "2f29baad4b3efe05a2bb81ac268855aa01cbc68397f15bac77b494ffd7e2cada";
sha256 = "1y7ny81rihnhc8lj921d76ir4kf4aj5iy35szgim8zccxhnx96p5";
};
checkInputs = [ pytest six mock ];