2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, isPy3k, fetchPypi, pycodestyle, isort }:
|
2018-03-31 10:40:49 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "avro";
|
2021-01-18 01:56:41 +00:00
|
|
|
version = "1.10.1";
|
2018-03-31 10:40:49 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-01-18 01:56:41 +00:00
|
|
|
sha256 = "b3a405df5aa8654b992d2aca7b80482b858a1919a44dc0b10a682162e8ee340a";
|
2018-03-31 10:40:49 +01:00
|
|
|
};
|
|
|
|
|
2020-08-21 13:26:28 +01:00
|
|
|
patchPhase = ''
|
|
|
|
# this test requires network access
|
|
|
|
sed -i 's/test_server_with_path/noop/' avro/test/test_ipc.py
|
2021-01-24 00:29:22 +00:00
|
|
|
'' + (lib.optionalString isPy3k ''
|
2020-08-21 13:26:28 +01:00
|
|
|
# these files require twisted, which is not python3 compatible
|
|
|
|
rm avro/txipc.py
|
|
|
|
rm avro/test/txsample*
|
|
|
|
'');
|
|
|
|
|
2020-06-16 21:41:57 +01:00
|
|
|
nativeBuildInputs = [ pycodestyle ];
|
|
|
|
propagatedBuildInputs = [ isort ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-03-31 10:40:49 +01:00
|
|
|
description = "A serialization and RPC framework";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://pypi.python.org/pypi/avro/";
|
2020-08-21 13:26:28 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.zimbatm ];
|
2018-03-31 10:40:49 +01:00
|
|
|
};
|
|
|
|
}
|