Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / avro-python3 / default.nix
blob114ff98326f82dfd6428f5bfdefbe057bdec706b
1 { lib, buildPythonPackage, fetchPypi, isPy3k, pycodestyle, isort }:
3 buildPythonPackage rec {
4   pname = "avro-python3";
5   version = "1.10.2";
6   format = "setuptools";
7   disabled = !isPy3k;
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "3b63f24e6b04368c3e4a6f923f484be0230d821aad65ac36108edbff29e9aaab";
12   };
14   buildInputs = [ pycodestyle isort ];
15   doCheck = false;        # No such file or directory: './run_tests.py
17   meta = with lib; {
18     description = "A serialization and RPC framework";
19     mainProgram = "avro";
20     homepage = "https://pypi.python.org/pypi/avro-python3/";
21     license = licenses.asl20;
23     maintainers = [ maintainers.shlevy maintainers.timma ];
24   };