python37Packages.kafka-python: 2.0.1 -> 2.0.2

This commit is contained in:
R. RyanTM 2020-10-16 09:33:12 +00:00 committed by Jon
parent 4669a06b33
commit 0a2acd4762

View file

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