Merge pull request #77379 from ktrsoft/master

python3Packages.avro-python3: init at 1.8.2
wip/yesman
Shea Levy 5 years ago committed by GitHub
commit 244c89d537
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      maintainers/maintainer-list.nix
  2. 22
      pkgs/development/python-modules/avro-python3/default.nix
  3. 2
      pkgs/top-level/python-packages.nix

@ -7026,6 +7026,11 @@
github = "timbertson";
name = "Tim Cuthbertson";
};
timma = {
email = "kunduru.it.iitb@gmail.com";
github = "ktrsoft";
name = "Timma";
};
timokau = {
email = "timokau@zoho.com";
github = "timokau";

@ -0,0 +1,22 @@
{ lib, stdenv, buildPythonPackage, fetchPypi, isPy3k }:
buildPythonPackage rec {
pname = "avro-python3";
version = "1.8.2";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "f82cf0d66189600b1e6b442f650ad5aca6c189576723dcbf6f9ce096eab81bd6";
};
doCheck = false; # No such file or directory: './run_tests.py
meta = with lib; {
description = "A serialization and RPC framework";
homepage = https://pypi.python.org/pypi/avro-python3/;
license = licenses.asl20;
maintainers = [ maintainers.shlevy maintainers.timma ];
};
}

@ -1669,6 +1669,8 @@ in {
avro3k = callPackage ../development/python-modules/avro3k {};
avro-python3 = callPackage ../development/python-modules/avro-python3 {};
aws-lambda-builders = callPackage ../development/python-modules/aws-lambda-builders { };
python-slugify = callPackage ../development/python-modules/python-slugify { };

Loading…
Cancel
Save