02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
25 lines
579 B
Nix
25 lines
579 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, flatbuffers
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
inherit (flatbuffers) pname version src;
|
|
|
|
format = "setuptools";
|
|
|
|
sourceRoot = "${src.name}/python";
|
|
|
|
# flatbuffers needs VERSION environment variable for setting the correct
|
|
# version, otherwise it uses the current date.
|
|
VERSION = version;
|
|
|
|
pythonImportsCheck = [ "flatbuffers" ];
|
|
|
|
meta = flatbuffers.meta // {
|
|
description = "Python runtime library for use with the Flatbuffers serialization format";
|
|
maintainers = with lib.maintainers; [ wulfsta ];
|
|
mainProgram = "flatc";
|
|
};
|
|
}
|