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

21 lines
512 B
Nix
Raw Normal View History

2020-06-16 20:41:57 +00:00
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, pycodestyle, isort }:
2018-03-31 09:40:49 +00:00
buildPythonPackage rec {
pname = "avro";
2020-05-09 10:01:43 +00:00
version = "1.9.2";
2018-03-31 09:40:49 +00:00
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
2020-05-09 10:01:43 +00:00
sha256 = "4487f0e91d0d44142bd08b3c6da57073b720c3effb02eeb4e2e822804964c56b";
2018-03-31 09:40:49 +00:00
};
2020-06-16 20:41:57 +00:00
nativeBuildInputs = [ pycodestyle ];
propagatedBuildInputs = [ isort ];
2018-03-31 09:40:49 +00:00
meta = with stdenv.lib; {
description = "A serialization and RPC framework";
homepage = "https://pypi.python.org/pypi/avro/";
2018-03-31 09:40:49 +00:00
};
}