nixpkgs/pkgs/development/python-modules/avro/default.nix

31 lines
838 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, isPy3k, fetchPypi, pycodestyle, isort }:
2018-03-31 10:40:49 +01:00
buildPythonPackage rec {
pname = "avro";
version = "1.10.1";
2018-03-31 10:40:49 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "b3a405df5aa8654b992d2aca7b80482b858a1919a44dc0b10a682162e8ee340a";
2018-03-31 10:40:49 +01:00
};
patchPhase = ''
# this test requires network access
sed -i 's/test_server_with_path/noop/' avro/test/test_ipc.py
'' + (lib.optionalString isPy3k ''
# 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 ];
meta = with lib; {
2018-03-31 10:40:49 +01:00
description = "A serialization and RPC framework";
homepage = "https://pypi.python.org/pypi/avro/";
license = licenses.asl20;
maintainers = [ maintainers.zimbatm ];
2018-03-31 10:40:49 +01:00
};
}