mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
826f8220ea
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python2.7-avro/versions
18 lines
401 B
Nix
18 lines
401 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, isPy3k }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "avro";
|
|
version = "1.9.0";
|
|
disabled = isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0af72fcql34v30cvjqm9nmz68rl35znn5qbd4k3b9ks02xzy3b2y";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A serialization and RPC framework";
|
|
homepage = https://pypi.python.org/pypi/avro/;
|
|
};
|
|
}
|