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