Files
nixpkgs/pkgs/development/python-modules/avro-python3/default.nix
T

24 lines
653 B
Nix
Raw Normal View History

{ lib, stdenv, buildPythonPackage, fetchPypi, isPy3k, pycodestyle, isort }:
2020-01-09 20:41:05 +05:30
buildPythonPackage rec {
pname = "avro-python3";
2020-08-16 19:30:50 +02:00
version = "1.10.0";
2020-01-09 20:41:05 +05:30
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
2020-08-16 19:30:50 +02:00
sha256 = "a455c215540b1fceb1823e2a918e94959b54cb363307c97869aa46b5b55bde05";
2020-01-09 20:41:05 +05:30
};
buildInputs = [ pycodestyle isort ];
2020-01-09 20:41:05 +05:30
doCheck = false; # No such file or directory: './run_tests.py
2020-01-11 13:53:06 +05:30
meta = with lib; {
2020-01-09 20:41:05 +05:30
description = "A serialization and RPC framework";
homepage = "https://pypi.python.org/pypi/avro-python3/";
2020-01-11 13:53:06 +05:30
license = licenses.asl20;
maintainers = [ maintainers.shlevy maintainers.timma ];
2020-01-09 20:41:05 +05:30
};
}