nixpkgs/pkgs/development/python-modules/flatbuffers/default.nix
2020-11-18 13:23:41 -08:00

18 lines
385 B
Nix

{ 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 ];
};
}