Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

kafka-python: init at 1.3.5

authored by Moritz Drexl and committed by Frederik Rietdijk 8a716eb7 1354099d

+23
+21
pkgs/development/python-modules/kafka-python/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, tox }: 2 + 3 + buildPythonPackage rec { 4 + name = "${pname}-${version}"; 5 + version = "1.3.5"; 6 + pname = "kafka-python"; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "19m9fdckxqngrgh0www7g8rgi7z0kq13wkhcqy1r8aa4sxad0f5j"; 11 + }; 12 + 13 + buildInputs = [ tox ]; 14 + 15 + meta = with stdenv.lib; { 16 + description = "Pure Python client for Apache Kafka"; 17 + homepage = https://github.com/dpkp/kafka-python; 18 + license = licenses.asl20; 19 + maintainers = with maintainers; [ ]; 20 + }; 21 + }
+2
pkgs/top-level/python-packages.nix
··· 2850 2850 2851 2851 confluent-kafka = callPackage ../development/python-modules/confluent-kafka {}; 2852 2852 2853 + kafka-python = callPackage ../development/python-modules/kafka-python {}; 2854 + 2853 2855 construct = callPackage ../development/python-modules/construct {}; 2854 2856 2855 2857 consul = buildPythonPackage (rec {