1{ lib, buildPythonPackage, fetchPypi, isPy3k, pycodestyle, isort }:
2
3buildPythonPackage rec {
4 pname = "avro-python3";
5 version = "1.10.2";
6 disabled = !isPy3k;
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "3b63f24e6b04368c3e4a6f923f484be0230d821aad65ac36108edbff29e9aaab";
11 };
12
13 buildInputs = [ pycodestyle isort ];
14 doCheck = false; # No such file or directory: './run_tests.py
15
16 meta = with lib; {
17 description = "A serialization and RPC framework";
18 homepage = "https://pypi.python.org/pypi/avro-python3/";
19 license = licenses.asl20;
20
21 maintainers = [ maintainers.shlevy maintainers.timma ];
22 };
23}