2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pytest, six, mock }:
|
2017-12-11 17:41:20 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2020-10-16 10:33:12 +01:00
|
|
|
version = "2.0.2";
|
2017-12-11 17:41:20 +00:00
|
|
|
pname = "kafka-python";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-16 10:33:12 +01:00
|
|
|
sha256 = "04dfe7fea2b63726cd6f3e79a2d86e709d608d74406638c5da33a01d45a9d7e3";
|
2017-12-11 17:41:20 +00:00
|
|
|
};
|
|
|
|
|
2017-12-12 07:48:10 +00:00
|
|
|
checkInputs = [ pytest six mock ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Upstream uses tox but we don't on Nix. Running tests manually produces however
|
|
|
|
# from . import unittest
|
|
|
|
# E ImportError: cannot import name 'unittest'
|
|
|
|
doCheck = false;
|
2017-12-11 17:41:20 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-12-11 17:41:20 +00:00
|
|
|
description = "Pure Python client for Apache Kafka";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/dpkp/kafka-python";
|
2017-12-11 17:41:20 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
};
|
|
|
|
}
|