2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy3k, pycodestyle, isort }:
|
2020-01-09 15:11:05 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "avro-python3";
|
2020-12-06 22:14:46 +00:00
|
|
|
version = "1.10.1";
|
2020-01-09 15:11:05 +00:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-12-06 22:14:46 +00:00
|
|
|
sha256 = "9027abeab63dd9b66bd3c564fa0670c70f78027ecb1978d96c6af7ed415b626b";
|
2020-01-09 15:11:05 +00:00
|
|
|
};
|
|
|
|
|
2020-10-02 16:19:01 +01:00
|
|
|
buildInputs = [ pycodestyle isort ];
|
2020-01-09 15:11:05 +00:00
|
|
|
doCheck = false; # No such file or directory: './run_tests.py
|
|
|
|
|
2020-01-11 08:23:06 +00:00
|
|
|
meta = with lib; {
|
2020-01-09 15:11:05 +00:00
|
|
|
description = "A serialization and RPC framework";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://pypi.python.org/pypi/avro-python3/";
|
2020-01-11 08:23:06 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
|
|
|
|
maintainers = [ maintainers.shlevy maintainers.timma ];
|
2020-01-09 15:11:05 +00:00
|
|
|
};
|
|
|
|
}
|