evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / flatbuffers / default.nix
blobdb0405cc34d116af222649c74595a64211bb7267
2   lib,
3   buildPythonPackage,
4   flatbuffers,
5 }:
7 buildPythonPackage rec {
8   inherit (flatbuffers) pname version src;
10   format = "setuptools";
12   sourceRoot = "${src.name}/python";
14   # flatbuffers needs VERSION environment variable for setting the correct
15   # version, otherwise it uses the current date.
16   VERSION = version;
18   pythonImportsCheck = [ "flatbuffers" ];
20   meta = flatbuffers.meta // {
21     description = "Python runtime library for use with the Flatbuffers serialization format";
22     maintainers = with lib.maintainers; [ wulfsta ];
23     mainProgram = "flatc";
24   };