pythonPackages.flatbuffers: init at 1.12.0

This commit is contained in:
Wulfsta
2020-11-13 00:49:05 -05:00
committed by Jonathan Ringer
parent 624285d029
commit 3c9c52db49
2 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{ stdenv
, buildPythonPackage
, flatbuffers
}:
buildPythonPackage rec {
inherit (flatbuffers) pname version src;
sourceRoot = "source/python";
pythonImportsCheck = [ "flatbuffers" ];
meta = flatbuffers.meta // {
description = "Python runtime library for use with the Flatbuffers serialization format";
maintainers = with stdenv.lib.maintainers; [ wulfsta ];
};
}