mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 09:14:28 +00:00
pythonPackages.flatbuffers: init at 1.12.0
This commit is contained in:
parent
624285d029
commit
3c9c52db49
17
pkgs/development/python-modules/flatbuffers/default.nix
Normal file
17
pkgs/development/python-modules/flatbuffers/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -2197,6 +2197,10 @@ in {
|
||||
|
||||
flask_wtf = callPackage ../development/python-modules/flask-wtf { };
|
||||
|
||||
flatbuffers = callPackage ../development/python-modules/flatbuffers {
|
||||
inherit (pkgs) flatbuffers;
|
||||
};
|
||||
|
||||
flexmock = callPackage ../development/python-modules/flexmock { };
|
||||
|
||||
flickrapi = callPackage ../development/python-modules/flickrapi { };
|
||||
@ -7083,6 +7087,7 @@ in {
|
||||
nccl = pkgs.nccl_cudatoolkit_10;
|
||||
openssl = pkgs.openssl_1_1;
|
||||
inherit (pkgs.darwin.apple_sdk.frameworks) Foundation Security;
|
||||
inherit (pkgs) flatbuffers;
|
||||
};
|
||||
|
||||
tensorflow-build_2 = callPackage ../development/python-modules/tensorflow/2 {
|
||||
@ -7092,6 +7097,7 @@ in {
|
||||
nccl = pkgs.nccl_cudatoolkit_11;
|
||||
openssl = pkgs.openssl_1_1;
|
||||
inherit (pkgs.darwin.apple_sdk.frameworks) Foundation Security;
|
||||
inherit (pkgs) flatbuffers;
|
||||
};
|
||||
|
||||
tensorflow-build = self.tensorflow-build_1;
|
||||
|
Loading…
Reference in New Issue
Block a user