mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
22 lines
518 B
Nix
22 lines
518 B
Nix
|
{ stdenv, buildPythonPackage, fetchPypi, tox }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
name = "${pname}-${version}";
|
||
|
version = "1.3.5";
|
||
|
pname = "kafka-python";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "19m9fdckxqngrgh0www7g8rgi7z0kq13wkhcqy1r8aa4sxad0f5j";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ tox ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Pure Python client for Apache Kafka";
|
||
|
homepage = https://github.com/dpkp/kafka-python;
|
||
|
license = licenses.asl20;
|
||
|
maintainers = with maintainers; [ ];
|
||
|
};
|
||
|
}
|