mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
Merge pull request #77379 from ktrsoft/master
python3Packages.avro-python3: init at 1.8.2
This commit is contained in:
commit
244c89d537
@ -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";
|
||||
|
22
pkgs/development/python-modules/avro-python3/default.nix
Normal file
22
pkgs/development/python-modules/avro-python3/default.nix
Normal file
@ -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…
Reference in New Issue
Block a user